In [1]:
import numpy as np, pandas as pd
from pygeocoder import Geocoder
import time
import json
import matplotlib.pyplot as plt
%matplotlib inline

import warnings
warnings.filterwarnings("ignore")

In [2]:
#load cities
varosok=[
'csikszereda',
'udvarhely',
'szentgyorgy',
'vasarhely',
'barot',
'gyergyo',
'kezdi',
'keresztur',
'kovaszna',
'balan',
'vlahica',
'parajd',
'szovata',
'regen',
'kolozsvar',
'segesvar',
'toplita']
varos=varosok[0]
varos


Out[2]:
'csikszereda'

In [3]:
#global array of people harvested
GP=[]
for path in {"db/","db2/"}:
    for varos in varosok:
        lines = [line.rstrip('\n') for line in open(path+varos+'.txt')]
        L=[i for i in lines if ((i!='') and (i!='..'))]

        #set start of friend list
        for i in range(len(L)):
            if 'FriendFriends' in L[i]:
                break
            if 'Add Friend' in L[i]:
                break
        L=L[i:]

        #set end of friend list
        c=0
        for i in range(len(L)):
            if 'FriendFriends' in L[i]:
                c=i
            if 'Add Friend' in L[i]:
                c=i
        L=L[:c+8] 

        #from here people entries are separated by a dot line
        #store people in array T
        T=[]
        subL=[]
        for l in L:
            if l!='.':
                if l!='FriendFriends':
                    if l!='Add Friend':
                        if l!='Message':
                            if l!='More Options':
                                if ' mutual friend' not in l:
                                    subL.append(l)
            else:
                T.append(subL)
                subL=[]


        ###########################
        for t in T[10:]:
            p={'name':t[0]}                
            for i in range(1,len(t)):
                k=t[i]
                #we know the source city by default
                if 'From ' not in k:
                    if 'Lives in ' in k:
                        p['livesin']=k[9:]
                    elif ' at ' in k:
                        if 'Studied ' in k:
                            h1=k[8:k.find(' at ')]
                            h2=k[k.find(' at ')+4:]
                            if len(h1)>2:p['studwhat']=h1
                            if " '" in h2:
                                h3=h2[h2.find(" '")+2:]
                                h2=h2[:h2.find(" '")]
                                p['studyear']=h3
                            p['studwhere']=h2
                        elif 'Studies ' in k:
                            h1=k[8:k.find(' at ')]
                            h2=k[k.find(' at ')+4:]
                            if len(h1)>2:p['studwhat']=h1
                            if " '" in h2:
                                h3=h2[h2.find(" '")+2:]
                                h2=h2[:h2.find(" '")]
                                p['studyear']=h3
                            p['studwhere']=h2
                        elif 'Works ' in k:
                            h1=k[k.find(' at ')+4:]
                            p['workwhere']=h1
                        elif 'Worked ' in k:
                            h1=k[k.find(' at ')+4:]
                            p['workwhere']=h1
                        else:
                            h1=k[:k.find(' at ')]
                            h2=k[k.find(' at ')+4:]
                            p['workwhat']=h1
                            p['workwhere']=h2
                    elif ' to ' in k: 
                        h1=k[k.find(' to ')+4:]
                        if 'Married ' in k:
                            if ' since ' in h1:
                                h2=h1[h1.find(' since ')+7:]
                                h1=h1[:h1.find(' since ')]
                                p['marriedsince']=h2
                            p['marriedto']=h1
                        elif 'Engaged ' in k:
                            if ' since ' in h1:
                                h2=h1[h1.find(' since ')+7:]
                                h1=h1[:h1.find(' since ')]
                                p['marriedsince']=h2
                            p['marriedto']=h1
                        elif 'Went ' in k:
                            if " '" in h1:
                                h2=h1[h1.find(" '")+2:]
                                h1=h1[:h1.find(" '")]
                                p['schoolyear']=h2
                            if len(h1)>2:P[counter]['school']=h1
                        elif 'Goes'  in k:
                            if " '" in h1:
                                h2=h1[h1.find(" '")+2:]
                                h1=h1[:h1.find(" '")]
                                p['schoolyear']=h2
                            if len(h1)>2:p['school']=h1
                    elif 'In a relationship with ' in k: 
                        h1=k[k.find('In a relationship with ')+23:]
                        if ' since ' in h1:
                            h2=h1[h1.find(' since ')+7:]
                            h1=h1[:h1.find(' since ')]
                            p['marriedsince']=h2
                        p['marriedto']=h1
                    else:
                        if k not in p.values(): 
                            if 'mutual friend' not in k:
                                if 'Single ' not in k:
                                    if 'Read ' not in k:
                                        if ' follower' not in k:
                                            if 'other' not in p:p['other']=[]
                                            p['other'].append(k)

                p['birth']=varos
                p['db']=path

            #append people to global
            GP.append(p)


---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-3-afa0a51a5c2d> in <module>()
     98                                 h1=h1[:h1.find(" '")]
     99                                 p['schoolyear']=h2
--> 100                             if len(h1)>2:P[counter]['school']=h1
    101                         elif 'Goes'  in k:
    102                             if " '" in h1:

NameError: name 'P' is not defined

In [5]:
#flattened array of people
NGPhelper={}
NGP=[]
for k in GP:
    #keep only unique people across dbs
    key=str([i for i in k.values() if 'db' not in i])  
    if key not in NGPhelper:
        NGPhelper[key]={i:k[i] for i in k if 'db' not in i}
NGP=NGPhelper.values()
#clean data from "other" duplicates
MGP=[]
for k in range(len(NGP)):
    MGP.append({})
    for i in NGP[k]:
        if i!='other':
            MGP[k][i]=NGP[k][i]
for k in range(len(NGP)):
    for i in NGP[k]:
        if i=='other':
            for j in range(len(NGP[k][i])):
                if NGP[k][i][j] not in MGP[k].values():
                    MGP[k]['other'+str(j+1)]=NGP[k][i][j]
        
        
#save data
#file('NGP.json','w').write(json.dumps(NGP))
#file('MGP.json','w').write(json.dumps(MGP))

In [8]:
#load existing peoplelist, if exits
NGP=json.loads(file("NGP.json").read())
MGP=json.loads(file("MGP.json").read())

In [9]:
#record keys, then normalize lsits
keys=[]
for i in range(len(MGP)):
    keys.append(MGP[i].keys())
keys=set(np.hstack(keys))

In [15]:
MGP[394]


Out[15]:
{u'birth': u'vasarhely',
 u'livesin': u'Cluj-Napoca',
 u'name': u'Cod\u0103u Annamari (Annamari)',
 u'studwhat': u'Facultatea de Litere',
 u'studwhere': u'Babes-Bolyai University',
 u'studyear': u'15'}

In [16]:
lists={}
for k in keys:
    lists[k]=set()
keys


Out[16]:
{u'birth',
 u'livesin',
 u'marriedsince',
 u'marriedto',
 u'name',
 u'other1',
 u'other2',
 u'other3',
 u'other4',
 u'other5',
 u'other6',
 u'school',
 u'schoolyear',
 u'studwhat',
 u'studwhere',
 u'studyear',
 u'workwhat',
 u'workwhere'}

In [17]:
#record lists
for i in range(len(MGP)):
    for j in MGP[i]:
        lists[j].add(MGP[i][j])

Place


In [18]:
#load existing placelist, if exits
VL=json.loads(file("VL.json").read())

In [19]:
#define locationrenamer 

def namer(s):
    
    if ',' in s: s=s[:s.find(',')]
    
    s=s.replace('\xc3\xa8','\xc3\xa9')
    s=s.replace('\xc3\xa0','\xc3\xa1')
    s=s.replace('\xc3\xb2','\xc3\xb3')
    s=s.replace('\xc3\xb9','\xc3\xba')
    s=s.replace('Mez\xc3\xb6','Mez\xc5\x91')
    s=s.replace('mez\xc3\xb6','mez\xc5\x91')
    s=s.replace('Erd\xc3\xb6','Erd\xc5\x91')
    s=s.replace('fal\xc3\xba','falu')
    s=s.replace('f\xc3\xbcrd\xc3\xb6','f\xc3\xbcrd\xc3\x91')
    
    if s=='Csikszereda': return 'Csíkszereda'
    elif s=='Miercurea-Ciuc': return 'Csíkszereda'
    elif s=='Miercurea Ciuc': return 'Csíkszereda'
    elif s=='Csikr\xc3\xa1kos': return 'Csíkrákos'
    elif s=='Csikszentimre': return 'Csíkszentimre'
    elif s=='Chilieni': return 'Kilyénfalva'
    elif s=='Tusnad Sat': return 'Tusnád'
    elif s=='Reci': return 'Réty'
    elif s=='Intorsura Buzaului': return 'Bodzaforduló'
    elif s=='Ocna De Sus': return 'Felsősófalva'
    elif s=='Sancraiu De Mures': return 'Marosszentkirály'
    elif s=='Breaza': return 'Beresztelke'
    elif s=='Corund': return 'Korond'
    elif s=='Intorsura Buzaului': return 'Bodzaforduló'
    elif s=='Intorsura Buzauli': return 'Bodzaforduló'
    elif s=='Bicfalau': return 'Bikfalva'
    elif s=='Cernatul-De-Jos': return 'Alsócsernáton'
    elif s=='Ojdula': return 'Ozsdola'
    elif s=='Bretcu': return 'Bereck'
    elif s=='Zabala': return 'Zabola'
    elif s=='Micfalau': return 'Mikóújfalu'
    elif s=='Csikszentkir\xc3\xa0ly': return 'Csíkszentkirály'
    elif s=='Csikszentmikl\xc3\xb3s': return 'Csíkszentmiklós'
    elif s=='Belgrade': return 'Belgrád'
    elif s=='S\xc3\xaendominic': return 'Csíkszentdomokos'
    elif s=='Budapest': return 'Budapest'
    elif s=='Cluj-Napoca': return 'Kolozsvár'
    elif s=='Timi\xc8\x99oara': return 'Temesvár'
    elif s=='Targu-Mures': return 'Marosvásárhely'
    elif s=='Csik Mindszent': return 'Csíkmindszent'
    elif s=='Abu Dhabi': return 'Abu Dhabi'
    elif s=='Tusnad F\xc3\xbcrd\xc3\xb6': return 'Tusnádfürdő'
    elif s=='Vienna': return 'Bécs'
    elif s=='Sepsiszentgyorgy': return 'Sepsiszentgyörgy'
    elif s=='Sf\xc3\xa2ntu-Gheorghe': return 'Sepsiszentgyörgy'
    elif s=='Paris': return 'Párizs'
    elif s=='Nagy-V\xc3\xa1rad': return 'Nagyvárad'
    elif s=='Nitra': return 'Nyitra'
    elif s=='Krak\xc3\xb3w': return 'Krakkó'
    elif s=='Tusnad': return 'Tusnád'
    elif s=='Zetea': return 'Zetelaka'
    elif s=='Siculeni': return 'Madéfalva'
    elif s=='Sz\xc3\xa9pviz': return 'Csíkszépvíz'
    elif s=='Sibiu': return 'Nagyszeben'
    elif s=='Bucharest': return 'Bukarest'
    elif s=='Oradea': return 'Nagyvárad'
    elif s=='Hodmezovasarhely': return 'Hódmezővásárhely'
    elif s=='Brussels': return 'Brüsszel'
    elif s=='Cologne': return 'Köln'
    elif s=='Dealu': return 'Oroszhegy'
    elif s=='Delne': return 'Csíkdelne'
    elif s=='Sz\xc3\xa9kelykeresztur': return 'Székelykeresztúr'
    elif s=='Bulgareni': return 'Bogárfalva'
    elif s=='Sighetu Marmatiei': return 'Máramarossziget'
    elif s=='Odorheiu Secuiesc': return 'Székelyudvarhely'
    elif s=='Athens': return 'Athén'
    elif s=='Brasov': return 'Brassó'
    elif s=='Beta': return 'Béta'
    elif s=='Martinis': return 'Homoródszentmárton'
    elif s=='Copenhagen': return 'Koppenhága'
    elif s=='Buda': return 'Budapest'
    elif s=='Neumarkt Am Mieresch': return 'Marosvásárhely'
    elif s=='Vlahita': return 'Szentegyháza'
    elif s=='Szentegyházasfalu': return 'Szentegyháza'
    elif s=='Fenyokut': return 'Fenyőkút'
    elif s=='Felsoboldogfalva': return 'Felsőboldogfalva'
    elif s=='Baile Tusnad': return 'Tusnádfürdő'
    elif s=='Szegedin': return 'Szeged'
    elif s=='Küküllokeményfalva': return 'Küküllőkeményfalva'
    elif s=='Oraseni': return 'Városfalva'
    elif s=='Nyikomalomfalva': return 'Nyikómalomfalva'
    elif s=='Szatmár-Németi': return 'Szatmárnémeti'
    elif s=='Lövete': return 'Lövéte'
    elif s=='Kézdi Almas': return 'Kézdialmás'
    elif s=='Cristuru Secuiesc': return 'Székelykeresztúr'
    elif s=='Sacueni': return 'Székelyhíd'
    elif s=='Szekelyszentmihaly': return 'Székelyszentmihály'
    elif s=='Debreczen': return 'Debrecen'
    elif s=='Liban': return 'Libán'
    elif s=='Leipzig': return 'Lipcse'
    elif s=='Pasareni': return 'Backamadaras'
    elif s=='Munich': return 'München'
    elif s=='Nuremberg': return 'Nüremberg'
    elif s=='Amsterdam': return 'Amszterdam'
    elif s=='Csik-Kozmas': return 'Csíkkozmás'
    elif s=='Csiktaploca': return 'Csíktaploca'
    elif s=='Csikszentsimon': return 'Csíkszentsimon'
    elif s=='Csikszentmárton': return 'Csíkszentmárton'
    elif s=='Vacaresti': return 'Vacsárcsi'
    elif s=='Milan': return 'Milánó'
    elif s=='Csikszentgyörgy': return 'Csíkszentgyörgy'
    elif s=='Nadejdea': return 'Ajnád'
    elif s=='Csikszenttamás': return 'Csíkszenttamás'
    elif s=='Gyor': return 'Győr'
    elif s=='London Borough of Camden': return 'London'
    elif s=='Csikszentdomokos': return 'Csíkszentdomokos'
    elif s=='Csikszentkirály': return 'Csíkszentkirály'
    elif s=='Madaras': return 'Csíkmadaras'
    elif s=='Karcfalva': return 'Csíkkarcfalva'
    elif s=='Ciceu': return 'Csíkcsicsó'
    elif s=='Izvoare': return 'Ivó'
    elif s=='Gyomro': return 'Gyömrő'
    elif s=='Sf\xc3\xaentu Gheorghe': return 'Sepsiszentgyörgy'
    elif s=='Baraolt': return 'Barót'
    elif s=='K\xc3\xb8benhavn': return 'Koppenhága'
    elif s=='Mik\xc3\xb4ujfal\xc3\xba': return 'Mikóújfalu'
    elif s=='Zagon': return 'Zágon'
    elif s=='Sarmasul': return 'Salamás'
    elif s=='Zalau': return 'Zilah'
    elif s=='Simleu Silvaniei': return 'Sepsiszentgyörgy'
    elif s=='Zalan': return 'Zalán'
    elif s=='Oradea-Mare': return 'Nagyvárad'
    elif s=='Ormenis': return 'Ürmös'
    elif s=='Bicsad': return 'Sepsibükszád'
    elif s=='Ozun': return 'Uzon'
    elif s=='Arkos': return 'Árkos'
    elif s=='Gheorgheni': return 'Gyergyószentmiklós'
    elif s=='S\xc3\xa2npetrul': return 'Barcaszentpéter'
    elif s=='Geneva': return 'Genf'
    elif s=='Breda': return 'Bréda'
    elif s=='Zoltan': return 'Zoltán'
    elif s=='Leliceni': return 'Csíkszentlélek'
    elif s=='Suatu': return 'Magyarszovát'
    elif s=='Pest': return 'Budapest'
    elif s=='Bacau': return 'Bákó'
    elif s=='Varfalau': return 'Várfalva'
    elif s=='Biksz\xc3\xa1d': return 'Sepsibükszád'
    elif s=='Satu Mare': return 'Szatmárnémeti'
    elif s=='Köröspatak': return 'Kőröspatak'
    elif s=='Prague': return 'Prága'
    elif s=='Turin': return 'Torinó'
    elif s=='Poiana Largului': return 'Hosszúmező'
    elif s=='Beius': return 'Belényes'
    elif s=='Csics\xc3\xb3': return 'Csíkcsicsó'
    elif s=='Rome': return 'Róma'
    elif s=='Sovata Bai': return 'Szováta'
    elif s=='veroce': return 'Verőce'
    elif s=='Nagy-Sz\xc3\xa9ben': return 'Nagyszeben'
    elif s=='Iasi': return 'Jászvásár'
    elif s=='Rupea': return 'Kőhalom'
    elif s=='Ludu\xc8\x99': return 'Marosludas'
    elif s=='Paingeni': return 'Póka'
    elif s=='Havadto': return 'Havadtő'
    elif s=='Reghinul': return 'Szászrégen'
    elif s=='S\xc3\xa2ncraiul-De-Mures': return 'Marosszentkirály'
    elif s=='Valureni': return 'Székelykakasd'
    elif s=='Ditro': return 'Gyergyóditró'
    elif s=='Sz\xc3\xa1rhegy': return 'Gyergyószárhegy'
    elif s=='Florence': return 'Firenze'
    elif s=='Bogata': return 'Marosbogát'
    elif s=='Alunis': return 'Magyaró'
    elif s=='Selanik (thessaloniki) Greece': return 'Thessaloniki'
    elif s=='Lunca Bradului': return 'Palotailva'
    elif s=='Ceuasul-De Campie': return 'Mezőcsávás'
    elif s=='Sangeorgiul De Mures': return 'Marosszentgyörgy'
    elif s=='Sighisoara': return 'Segesvár'
    elif s=='Gyergyo': return 'Gyergyószentmiklós'
    elif s=='Ogra': return 'Marosugra'
    elif s=='Ujtusn\xc3\xa1d': return 'Újtusnád'
    elif s=='Miercurea Nirajului': return 'Nyárádszereda'
    elif s=='Floresti': return 'Szászfenes'
    elif s=='Santioana-De-Mures': return 'Csittszentiván'
    elif s=='Maroskeresztur': return 'Maroskeresztúr'
    elif s=='Sangeorgiu-De-Padure': return 'Erdőszentgyörgy'
    elif s=='Cristesti': return 'Maroskeresztúr'
    elif s=='Sangeorg-De Mures': return 'Marosszentgyörgy'
    elif s=='Dej': return 'Dés'
    elif s=='Csikfalva': return 'Csíkfalva'
    elif s=='Marghita': return 'Margitta'
    elif s=='Valea Izvoarelor': return 'Buzásbesenyő'
    elif s=='Corunca': return 'Koronka'
    elif s=='Sovata': return 'Szováta'
    elif s=='Ny\xc3\xa1radremete': return 'Nyárádremete'
    elif s=='Cehu Silvaniei': return 'Szilágycseh'
    elif s=='B\xc3\xa1lav\xc3\xa1s\xc3\xa1r,': return 'Balavásár'
    elif s=='Csomafalva': return 'Gyergyócsomafalva'
    elif s=='Szigetsentmiklos': return 'Szigetszentmiklós'
    elif s=='Mik\xc3\xb4ujfal\xc3\xb9': return 'Mikóújfalu'
    elif s=='Bibarczflava': return 'Bibarcfalva'
    elif s=='Bradut': return 'Fenyéd'
    elif s=='Huedin': return 'Bánffyhunyad'
    elif s=='New Delhi': return 'Újdelhi'
    elif s=='Galanta': return 'Galánta'
    elif s=='Beirut': return 'Bejrút'
    elif s=='Riyadh': return 'Rijád'
    elif s=='Jerusalem': return 'Jeruzsálem'
    elif s=='Godollo': return 'Gödöllő'
    elif s=='Balatonfuzfo': return 'Balatonfűzfő'
    elif s=='Fels\xc3\xb6sofalva': return 'Felsősófalva'
    elif s=='Bodok': return 'Sepsibodok'
    elif s=='Bodoc': return 'Sepsibodok'
    elif s=='Biborteni': return 'Bibarcfalva'
    elif s=='Tarnaveni': return 'Dicsőszentmárton'
    elif s=='Bremen': return 'Bréma'
    elif s=='Targu-Sacuesc': return 'Kézdivásárhely'
    elif s=='Ungheni': return 'Nyárádtő'
    elif s=='Racosu De Jos': return 'Alsórákos'
    elif s=='Mikl\xc3\xb3svar': return 'Miklósvár'
    elif s=='V\xc4\x81sad': return 'Vasad'
    elif s=='Sf\xc3\xa2ntul-Gheorghe': return 'Sepsiszentgyörgy'
    elif s=='Malnas Bai': return 'Málnásfürdő'
    elif s=='Colonia Bod': return 'Botfalusi Cukorgyártelep'
    elif s=='Ujfal\xc3\xba': return 'Újfalu'
    elif s=='Doboseni': return 'Székelyszáldobos'
    elif s=='Batanii Mari': return 'Nagybacon'
    elif s=='Rakos': return 'Felsőrákos'
    elif s=='Gonyu': return 'Gönyű'
    elif s=='Capeni': return 'Köpec'
    elif s=='K\xc3\xb6pecz': return 'Köpec'
    elif s=='Senec': return 'Szenc'
    elif s=='Petrosani': return 'Petrozsény'
    elif s=='Biharia': return 'Bihar'
    elif s=='Racos': return 'Felsőrákos'
    elif s=='Erdofule': return 'Erdőfüle'
    elif s=='Kopec': return 'Köpec'
    elif s=='Sarmasag': return 'Sarmaság'
    elif s=='Aiud': return 'Nagyenyed'
    elif s=='Fels\xc3\xb6r\xc3\xa1kos': return 'Felsőrákos'
    elif s=='Ullo': return 'Üllő'
    elif s=='Alba Iulia': return 'Gyulafehérvár'
    elif s=='Felso Szeli': return 'Csíkszereda'
    elif s=='Kom\xc3\xa1ndo': return 'Kommandó'
    elif s=='Remetea': return 'Gyergyóremete'
    elif s=='S\xc3\xa2nnicolaul-De-Munte': return 'Hegyközszentmiklós'
    elif s=='Tulghes': return 'Gyergyótölgyes'
    elif s=='Marosfo': return 'Marosfő'
    elif s=='Lazarea': return 'Gyergyószárhegy'
    elif s=='Gyimesfels\xc3\xb6lok': return 'Gyimesfelsőlok'
    elif s=='K\xc3\xa1szonaltiz': return 'Kászonaltíz'
    elif s=='Suseni': return 'gyergyóújfalu'
    elif s=='Gyerg\xc3\xb2szentmikl\xc3\xb2s': return 'Gyergyószentmiklós'
    elif s=='Magyaro': return 'Magyaró'
    elif s=='Deva': return 'Déva'
    elif s=='Szatm\xc3\xa1r': return 'Szatmárnémeti'
    elif s=='Lacu Rosu': return 'Gyilkostó'
    elif s=='K\xc3\xb6r\xc3\xb6sszegap\xc3\xa1ti': return 'Kőrősszegapáti'
    elif s=='Ditrau': return 'Gyergyóditró'
    elif s=='Naples': return 'Nápoly'
    elif s=='T\xc3\xaergu Secuiesc': return 'Kézdivásárhely'
    elif s=='Turia': return 'Torja'
    elif s=='K\xc3\xa0szonuifal\xc3\xb9': return 'Kászonújfalu'
    elif s=='Cernat': return 'Csernáton'
    elif s=='Cosnea': return 'Kóstelek'
    elif s=='Mereni': return 'Kézdialmás'
    elif s=='Bretcul': return 'Bereck'
    elif s=='Poian': return 'Kézdiszentkereszt'
    elif s=='Cernatul-De-Sus': return 'Csernáton'
    elif s=='Icafalau': return 'Ikafalva'
    elif s=='Bereczk': return 'Bereck'
    elif s=='Zau De C\xc3\xaempie': return 'Mezőzáh'
    elif s=='Hatuica': return 'Hatolyka'
    elif s=='Sarfalva': return 'Sárfalva'
    elif s=='K\xc3\xa9zdi-Mart\xc3\xb2nos': return 'Kézdimartonos'
    elif s=='Csiksomly\xc3\xb3': return 'Csíksomlyó'
    elif s=='Beijing': return 'Peking'
    elif s=='Vlaha': return 'Magyarfenes'
    elif s=='Baciu': return 'Kisbács'
    elif s=='Reghin': return 'Szászrégen'
    elif s=='Eted': return 'Etéd'
    elif s=='Carei': return 'Nagykároly'
    elif s=='Felsolajos': return 'Felsőlajos'
    elif s=='Paltinis': return 'Kecsed'
    elif s=='Atid': return 'Etéd'
    elif s=='Lopadea Noua': return 'Magyarlapád'
    elif s=='Andreeni': return 'Székelyandrásfalva'
    elif s=='Diosig': return 'Bihardiószeg'
    elif s=='Emod': return 'Emőd'
    elif s=='Cristur': return 'Székelykeresztúr'
    elif s=='Andr\xc3\xa1sfalva': return 'Székelyandrásfalva'
    elif s=='Pilisborosjeno': return 'Pilisborosjenő'
    elif s=='Kiskoros': return 'Kiskőrös'
    elif s=='Als\xc3\xb2b\xc3\xb2ldogfalva': return 'Alsóboldogfalva'
    elif s=='Vetca': return 'Székelyvécke'
    elif s=='Goagiu': return 'Gagy'
    elif s=='Betesti': return 'Betfalva'
    elif s=='Kaposfo': return 'Kaposfő'
    elif s=='Bodogaia': return 'Alsóboldogfalva'
    elif s=='Siklodi Oldal': return 'Siklód'
    elif s=='Koszegszerdahely': return 'Kőszegszerdahely'
    elif s=='Ilieni': return 'Lukailencfalva'
    elif s=='Lunca De Jos': return 'Gyimesközéplok'
    elif s=='Tapioszecso': return 'Tápiószecső'
    elif s=='Ujsz\xc3\xa8kely': return 'Újszékely'
    elif s=='Turda': return 'Torda'
    elif s=='Jiboul': return 'Zsibó'
    elif s=='Agnita': return 'Szentágota'
    elif s=='Cisnadie': return 'Nagydisznód'
    elif s=='Peregu Mare': return 'Németpereg'
    elif s=='Constanta': return 'Konstanca'
    elif s=='Hezeris': return 'Lugosegres'
    elif s=='Tekeropatak': return 'Gyergyótekerőpatak'
    elif s=='Galati': return 'Galac'
    elif s=='Covasna': return 'Kovászna'
    elif s=='Kronstadt': return 'Brassó'
    elif s=='T\xc3\xa2rgu Jiu': return 'Zsilvásárhely'
    elif s=='S\xc3\xa2ndominic': return 'Csíkszentdomokos'
    elif s=='Chisineu Chis': return 'Kőrőskisjenő'
    elif s=='Bistrita': return 'Beszterce'
    elif s=='Izvorul Muresului': return 'Marosfő'
    elif s=='Gilau': return 'Gyalu'
    elif s=='Corois\xc3\xa2nmartin': return 'Kóródszentmárton'
    elif s=='Marculeni': return 'Márkod'
    elif s=='Sarmas': return 'Salamás'
    elif s=='Palanca': return 'Palánka'
    elif s=='Odorheiul Secuiesc': return 'Székelyudvarhely'
    elif s=='Talmacel': return 'Kistalmács'
    elif s=='Adjud': return 'Egyedhalma'
    elif s=='Baia Mare': return 'Nagybánya'
    elif s=='Valea Mica': return 'Pokolpatak'
    elif s=='Ghimes-Faget': return 'Gyimesbükk'
    elif s=='Ruganesti': return 'Rugonfalva'
    elif s=='Toplita-Ciuc': return 'Maroshévíz'
    elif s=='Belin': return 'Bölön'
    elif s=='Gurghiu': return 'Görgényszentimre'
    elif s=='Jenofalva': return 'Csíkjenőfalva'
    elif s=='Comanesti': return 'Kománfalva'
    elif s=='Balan': return 'Balánbánya'
    elif s=='Miercurea Ciuc': return 'Csíkszereda'
    elif s=='T\xc3\xa2rgu Jiu': return 'Zsilvásárhely'
    elif s=='Cristolt': return 'Nagykeresztes'
    elif s=='Toplita': return 'Maroshévíz'
    elif s=='Miercurea-Ciucului': return 'Csíkszereda'
    elif s=='Chiheru De Sus': return 'Felsőköhér'
    elif s=='Borsec': return 'Borszék'
    elif s=='Vasluiul': return 'Vaslui'
    elif s=='Bucuresti-Noi': return 'Bukarest'
    elif s=='Istanbul': return 'Isztambul'
    elif s=='Targu-Neamt': return 'Németvásár'
    elif s=='Uzinele Vlahita': return 'Szentegyháza'
    elif s=='Szasz R\xc3\xa9gen': return 'Szászrégen'
    elif s=='Baile Homorod': return 'Homoródfürdő'
    elif s=='Corfu': return 'Korfu'
    elif s=='Lueta': return 'Lövéte'
    elif s=='Praid': return 'Parajd'
    elif s=='Mindszent': return 'Csíkmindszent'
    elif s=='Homorodfurdo': return 'Homoródfürdő'
    elif s=='Homorod-Bai': return 'Homoródfürdő'
    elif s=='Chibed': return 'Kibéd'
    elif s=='Uzonkaf\xc3\xbcrd\xc3\xb6': return 'Uzonkafürdő'
    elif s=='Borzsova': return 'Csíkborzsova'
    elif s=='Mina Sarmmasag': return 'Sarmaság'
    elif s=='Iernut': return 'Radnót'
    elif s=='Medias': return 'Szászmedgyes'
    elif s=='Bratislava': return 'Pozsony'
    elif s=='C\xc3\xa2mpia Turzi': return 'Aranyosgyéres'
    elif s=='C\xc3\xa2mpia Turzi': return 'Aranyosgyéres'
    elif s=='Mosuni': return 'Székelymoson'
    elif s=='Hunedoara': return 'Vajdahunyad'
    elif s=='Damieni': return 'Deményháza'
    elif s=='Chilieni': return 'Kilyén'
    elif s=='Nadlac': return 'Nagylak'
    elif s=='Sacadat': return 'Szakadát'
    elif s=='Baile Sovata': return 'Szováta'
    elif s=='Csengod': return 'Csengőd'
    elif s=='Copaceni': return 'Koppánd'
    elif s=='Livezeni': return 'Jedd'
    elif s=='Viisoara': return 'Csatófalva'
    elif s=='Voivodeni': return 'Vajdaháza'
    elif s=='Rastolita': return 'Ratosnya'
    elif s=='Serbeni': return 'Soropháza'
    elif s=='S\xc3\xa2npetru-De-C\xc3\xa2mpie': return 'Mezőszentpéter'
    elif s=='Iernuteni': return 'Randótfája'
    elif s=='Hermannstadt': return 'Nagyszeben'
    elif s=='Nadasa': return 'Görgénynádas'
    elif s=='City of Brussels': return 'Brüsszel'
    elif s=='Trei Sate': return 'Hármasfalu'
    elif s=='Mar\xc3\xb3s Vecs': return 'Marosvécs'
    elif s=='Gurghiul': return 'Görgényszentimre'
    elif s=='Petelea': return 'Petele'
    elif s=='Jabenita': return 'Görgénysóakna'
    elif s=='Valenii De Mures': return 'Disznajó'
    elif s=='Orfu': return 'Orfű'
    elif s=='Fitcau': return 'Fickópataka'
    elif s=='Dezmir': return 'Dezmér'
    elif s=='Podu Turcului': return 'Törökpadja'
    elif s=='Goreni': return 'Dedrádszéplak'
    elif s=='Mitresti': return 'Nyárádszentmárton'
    elif s=='Ibanesti': return 'Libánfalva'
    elif s=='Gherla': return 'Szamosújvár'
    elif s=='Solovastrul': return 'Görgényoroszfalu'
    elif s=='Reghinul Sashsisch': return 'Szászrégen'
    elif s=='Brancovenesti': return 'Marosvécs'
    elif s=='Zadareni': return 'Zádorlac'
    elif s=='Reghin-Sat': return 'Szászrégen'
    elif s=='Beica De Jos': return 'Alsóbölkény'
    elif s=='Baita': return 'Laposbánya'
    elif s=='Sacalu De Padure': return 'Magyarerdőszakál'
    elif s=='Ideciu De Sus': return 'Alsóidecs'
    elif s=='Chiheru de Jos': return 'Alsóköhér'
    elif s=='Beica De Sus': return 'Felsőbölkény'
    elif s=='Ideciul-De-Jos': return 'Alsóidecs'
    elif s==' Tapioszecso': return 'Tápiószecső'
    elif s=='Glajarie': return 'Görgényüvegcsűr'
    elif s=='Blaj': return 'Balázsfalva'
    elif s=='G\xc3\xb6rg\xc3\xa9ny\xc3\xbcvegcs\xc3\xbcr': return 'Görgényüvegcsűr'
    elif s=='Martinesti': return 'Pusztaszentmárton'
    elif s=='Luna De Sus': return 'Szászlóna'
    elif s=='Chesau': return 'Mezőkeszü'
    elif s=='baile Felix': return 'Félixfürdő'
    elif s=='Dubai': return 'Dubaj'
    elif s=='Nimigea De Jos': return 'Magyarnemegye'
    elif s=='C\xc3\xa2mpia Turzii': return 'Aranyosgyéres'
    elif s=='Craciunelul-De-Jos': return 'Alsókarácsonfalva'
    elif s=='Valenii': return 'Disznajó'
    elif s=='Laslea': return 'Szászszentlászló'
    elif s=='Petrilaca': return 'Oláhpéterlaka'
    elif s=='Nazna': return 'Náznánfalva'
    elif s=='Dragomiresti': return 'Dragomérfalva'
    elif s=='Balauseri': return 'Balavásár'
    elif s=='Saschiz': return 'Szászkézd'
    elif s=='S\xc3\xa2ntioana': return 'Marosszentanna'
    elif s=='Mica': return 'Mikefalva'
    elif s=='Seleusu-Mare': return 'Nagyszőlős'
    elif s=='Odrihei': return 'Vámosudvarhely'
    elif s=='Danes': return 'Dános'
    elif s=='Suplac': return 'Széplak'
    elif s=='Resita': return 'Resicabánya'
    elif s=='Codlea': return 'Feketehalom'
    elif s=='Tigmandru': return 'Cikmántor'
    elif s=='Remetea Lunca': return 'Hosszúremete'
    elif s=='Soardu': return 'Küküllősárd'
    elif s=='Szentharomsag': return 'Szentháromság'
    elif s=='Corbu': return 'Gyergyóholló'
    elif s=='St\xc3\xaenceni': return 'Gödemesterháza'
    elif s=='St\xc3\xa2nceni': return 'Gödemesterháza'
    elif s=='Vertesszolos': return 'Vértesszőlős'
    elif s=='Gheorghieni': return 'Gyergyószentmiklós'
    elif s=='Deda': return 'Déda'
    elif s=='Deda Bistra': return 'Dédabisztra'
    elif s=='Bistra Muresului': return 'Dédabisztra'
    elif s=='Lugoj': return 'Lugos'
    elif s=='Sausa': return 'Székelysóspatak'
    elif s=='Hodosa-De-Ciuc': return 'Csíkhodos'
    elif s=='Subcetate': return 'Zeteváralja'
    elif s=='Pantelimon': return 'Bukarest'
    elif s=='Capilnita': return 'Kápolnásfalu'
    elif s=='Santana-De-Mures': return 'Marosszentanna'
    elif s=='Bocsa': return 'Boksánbánya'
    elif s=='S\xc3\xa2nnicolau Mare': return 'Nagyszentmiklós'
    elif s=='S\xc3\xa2nnicolaul Mare': return 'Nagyszentmiklós'
    elif s=='S\xc3\xa2npetru Mic': return 'Kisszentpéter'
    elif s=='S\xc3\xaennicolaul Mare': return 'Nagyszentmiklós'
    elif s=='St\xc3\xa2nceni': return 'Gödemesterháza'
    elif s=='Ciobotani': return 'Csobotány'
    elif s=='Lunca De Sus': return 'Gyimesfelsőlok'
    elif s=='Ghindari': return 'Makkfalva'
    elif s=='Caporal Alexa': return 'Erdőskerek'
    elif s=='Coldau': return 'Várkudu'
    elif s=='Bicaz Chei': return 'Békás'
    elif s=='Bilbor': return 'Bélbor'
    elif s=='Moscow': return 'Moszkva'
    
    else: return s

In [20]:
def code(i):
    i=i.replace('Sonderjylland','')
    i=i.replace('\xc3\xa8','\xc3\xa9')
    i=i.replace('\xc3\xa0','\xc3\xa1')
    i=i.replace('\xc3\xb2','\xc3\xb3')
    i=i.replace('\xc3\xb9','\xc3\xba')
    i=i.replace('Mez\xc3\xb6','Mez\xc5\x91')
    i=i.replace('mez\xc3\xb6','mez\xc5\x91')
    i=i.replace('Erd\xc3\xb6','Erd\xc5\x91')
    i=i.replace('fal\xc3\xba','falu')
    i=i.replace('f\xc3\xbcrd\xc3\xb6','f\xc3\xbcrd\xc3\x91')
    if i=='Szentegyházasfalu': tocode='Valhita, Harghita, Romania'
    elif i=='Szentegyh\xc3\xa1zasfalu': tocode='Valhita, Harghita, Romania'
    elif i=='Sarmasul, Mures, Romania': tocode='Sarmas, Mures, Romania'
    elif i=='Ilencfalva, Mures, Romania': tocode='Ilieni, Mures, Romania'
    elif i=='Reghinul, Mures, Romania': tocode='Reghin, Mures, Romania'
    elif i=='S\xc3\xa2ncraiul-De-Mures, Mures, Romania': tocode='Sancraiu de Mures, Mures, Romania'
    elif i=='Monoritoko, Mahajanga, Madagascar': tocode='Manaritoka, Mahajanga, Madagascar'
    elif i=='Sangeorg-De Mures, Mures, Romania': tocode='Sangeorgiu De Mures, Mures, Romania'
    elif i=='S\xc3\xb6lden, Austria': tocode='Solden, Austria'
    elif i=='Pjelax, L\xc3\xa4nsi-Suomen L\xc3\xa4\xc3\xa4ni, Finland': tocode='Pjelax, Finland'
    elif i=='Siklodi Oldal, Mures, Romania': tocode='Siklod, Mures, Romania'
    elif i=='Kereszt\xc3\xbar, Timis, Romania': tocode='Cherestur, Timis, Romania'
    elif i=='Jiboul, Salaj, Romania': tocode='Jibou, Salaj, Romania'
    elif i=='Szasz R\xc3\xa9gen, Mures, Romania': tocode='Reghin, Mures, Romania'
    elif i=='Fick\xc3\xb3, Mures, Romania': tocode='Fitcau, Mures, Romania'
    elif i=='Gurghiul, Mures, Romania': tocode='Gurghiu, Mures, Romania'
    elif i=='Mar\xc3\xb3s Vecs, Mures, Romania': tocode='Brancovenesti, Mures, Romania'
    elif i=='Felfalu, Mures, Romania': tocode='Suseni, Mures, Romania'
    elif i=='Solovastrul, Mures, Romania': tocode='Solovastru, Mures, Romania'
    elif i=='Reghinul Sashsisch, Mures, Romania': tocode='Reghin, Mures, Romania'
    elif i=='Ideciul-De-Jos, Mures, Romania': tocode='Ideciu De Jos, Mures, Romania'
    elif i=='Craciunelul-De-Jos, Alba, Romania': tocode='Craciunelu De Jos, Alba, Romania'
    elif i=='Seleusu-Mare, Mures, Romania': tocode='Seleus, Mures, Romania'
    elif i=='Chendu Mare, Mures, Romania': tocode='Chend, Mures, Romania'
    elif i=='Chendu Mare, Mures, Romania': tocode='Chend, Mures, Romania'
    elif i=='Galautasi, Mures, Romania': tocode='Galautasi, Romania'
    elif i=='Iermata Neagra, Timis, Romania': tocode='Iermata Neagra, Romania'
    elif i=='Kiskend, Mures, Romania': tocode='Chendu, Mures, Romania'
    elif i=='Teremeujfal\xc3\xb9, Mures, Romania': tocode='Satu Nou, Mures, Romania'
    elif i=='Eremitul, Mures, Romania': tocode='Eremitu, Mures, Romania'
    elif i=='Szentbenedek, Mures, Romania': tocode='Manastirea, Cluj, Romania'
    elif i=='Baczkamadaras, Mures, Romania': tocode='Pasareni, Mures, Romania'
    elif i=='Arpasel, Timis, Romania': tocode='Arpasel, Bihor, Romania'
    elif i=='Grintiesu Mic, Neamt, Romania': tocode='Grinties, Neamt, Romania'
    elif i=='Batos': tocode='Batos, Mures, Romania'
    elif i=='Toplita-Ciuc, Harghita, Romania': tocode='Toplita, Harghita, Romania'
    elif i=='Kopec': tocode='Capeni, Harghita, Romania'
    elif i=='S\\xc3\\xa2nger': tocode='Sanger, Mures, Romania'
    elif i=='Iv\xc3\xb3pataka, Harghita, Romania': tocode='Izvoare, Harghita, Romania'
    elif i=='Iv\xc3\xb2pataka, Harghita, Romania': tocode='Izvoare, Harghita, Romania'
    elif i=='Nagymedes\xc3\xa9r, Harghita, Romania': tocode='Simonesti, Harghita, Romania'
    elif i=='Nagymedes\xc3\xa8r, Harghita, Romania': tocode='Simonesti, Harghita, Romania'
    elif i=='Beseny\xc3\xb6, Covasna, Romania': tocode='Moacsa, Covasna, Romania'
    elif i=='Csikszentm\xc3\xa0rton, Covasna, Romania': tocode='Sinmartin, Harghita, Romania'
    elif i=='Csikszentm\xc3\xa1rton, Covasna, Romania': tocode='Sinmartin, Harghita, Romania'
    elif i=='Kad\xc3\xa0cs, Harghita, Romania': tocode='Atia, Harghita, Romania'
    elif i=='Kad\xc3\xa1cs, Harghita, Romania': tocode='Atia, Harghita, Romania'
    elif i=='Erlenbach \xc3\x9cber Wittlich, Rheinland-Pfalz, Germany': tocode='Erlenbach bei Kandel'
    elif i=='K\xc3\xb6v\xc3\xa1r, Covasna, Romania': tocode='Sanzieni, Covasna'
    elif i=='Biksz\xc3\xa1d, Covasna, Romania': tocode='Bixad, Covasna'
    elif i=='M\xc3\xa1rtonfalva, Covasna, Romania': tocode='Catalina, Covasna'
    elif i=='In\xc3\xa1rcs, Heves, Hungary': tocode='In\xc3\xa1rcs, Hungary'
    elif i=='Fels\xc3\xb6csern\xc3\xa1ton, Covasna, Romania': tocode='Cernat, Covasna'
    elif i=='K\xc3\xa1szonuifalu, Covasna, Romania': tocode='Casinu Nou, Romania'
    elif i=='Csics\xc3\xb3, Harghita, Romania': tocode='Ciceu, Romania'
    elif i=='Kom\xc3\xa1ndo, Covasna, Romania': tocode='Comandau, Covasna'
    elif i=='M\xc3\xa9nas\xc3\xa1g, Harghita, Romania': tocode='Armaseni, Harghita, Romania'
    elif i=='Csat\xc3\xb3szeg, Covasna, Romania': tocode='Cetatuia, Romania'
    elif i=='Hargitaf\xc3\xbcrd\xc3\x91, Harghita, Romania': tocode='Harghita Bai, Romania'
    elif i=='Ujfalu, Harghita, Romania': tocode='Armaseni, Romania'
    elif i=='K\xc3\xa1szonfeltiz, Covasna, Romania': tocode='Plaiesii de Jos, Romania'
    elif i=='P\xc3\xa1lfalva, Harghita, Romania': tocode='Pauleni, Harghita, Romania'
    elif i=='\xef\xbf\xbdSz\xc3\xa1r, Komarom-Esztergom, Hungary': tocode='Szarliget, Hungary'
    elif i=='Fels\xc3\xb6r\xc3\xa1kos, Harghita, Romania': tocode='Racu, Harghita, Romania'
    elif i=='F\xc3\xbcle, Harghita, Romania': tocode='Filia, Romania'
    elif i=='Sz\xc3\xa9kelyders, Harghita, Romania': tocode='Darjiu, Romania'
    elif i=='Andr\xc3\xa1sfalva, Harghita, Romania': tocode='Santana, Mures, Romania'
    elif i=='Uzonkaf\xc3\xbcrd\xc3\x91, Covasna, Romania': tocode='Ozunca-Bai, Romania'
    elif i=='L\xc3\xa1z\xc3\xa1rfalva, Covasna, Romania': tocode='Lazaresti, Romania'
    elif i=='Sz\xc3\xa1razpatak, Covasna, Romania': tocode='Aita Seaca, Romania'
    elif i=='K\xc3\xa1szoninper, Covasna, Romania': tocode='Imper, Romania'
    elif i=='Marosh\xc3\xa9viz, Mures, Romania': tocode='Toplita, Romania'
    elif i=='Sn\xc3\xa6bum, Nordjylland, Denmark': tocode='Denmark'
    elif i=='Szentkir\xc3\xa1ly, Covasna, Romania': tocode='Sincraiu, Covasna, Romania'
    elif i=='Sikassz\xc3\xb3, Harghita, Romania': tocode='Sicasau, Romania'
    elif i=='Tam\xc3\xa1sfalva, Covasna, Romania': tocode='Tamaseni, Romania'
    elif i=='K\xc3\xa1szonaltiz, Covasna, Romania': tocode='Plaiesii de Jos, Romania'
    elif i=='Sz\xc3\xa9keylveczke, Mures, Romania': tocode='Vetca, Romania'
    elif i=='K\xc3\xb6pecz, Covasna, Romania': tocode='Capeni, Romania'
    elif i=='Komoll\xc3\xb3, Covasna, Romania': tocode='Reci, Romania'
    elif i=='Bard\xc3\xb3cz, Harghita, Romania': tocode='Bradut, Romania'
    elif i=='Inferno, Cuanza Sul, Angola': tocode='Sumbe, Cuanza Sul, Angola'
    elif i=='K\xc4\xb1na, Bolu, Turkey': tocode='Bolu'
    elif i=='Als\xc3\xb3csern\xc3\xa1ton, Covasna, Romania': tocode='Cernat, Romania'
    else: tocode=i
    return tocode

In [21]:
notVL=set()
for i in lists['livesin']:
    if i not in VL:
        notVL.add(i)

In [22]:
len(notVL)


Out[22]:
0

In [54]:
for i in notVL:
    try:
        w=Geocoder.geocode(code(i))
        VL[i]={"coord":w.coordinates,"raw":w.raw,"country":w.country}
    except:
        print i,'|',code(i)
        break

In [59]:
file('VL.json','w').write(json.dumps(VL))

Names


In [60]:
PL={}
for i in VL.keys():
    if type(i) is unicode:
        PL[i]=namer(i.encode('utf8'))
    else:
        PL[i]=namer(i)

In [61]:
file('PL.json','w').write(json.dumps(PL))

School


In [62]:
def school(i):
    if i=='BME': tocode='Budapesti Muszaki Egyetem'
    elif i=='Life :*': tocode='Marton Arong Gimnazium'
    elif i=='\xe0\xb9\x82\xe0\xb8\xa3\xe0\xb8\x87\xe0\xb9\x80\xe0\xb8\xa3\xe0\xb8\xb5\xe0\xb8\xa2\xe0\xb8\x99\xe0\xb8\x9a\xe0\xb9\x89\xe0\xb8\xb2\xe0\xb8\x99\xe0\xb8\xab\xe0\xb8\x99\xe0\xb8\xad\xe0\xb8\x87\xe0\xb9\x83\xe0\xb8\xab\xe0\xb8\x8d\xe0\xb9\x88': tocode='Marton Arong Gimnazium'    
    else: tocode=i
    return tocode+' school'

In [63]:
SL={}

In [64]:
from googleplaces import GooglePlaces, types, lang
#YOUR_API_KEY = 'AIzaSyDzdVjSa6UoJHZvYgArra3Dt3WSZeUH4nQ'
#YOUR_API_KEY = 'AIzaSyAerhuhvdfA8U16y8_uxnTO2qrO-ddaogY'
#YOUR_API_KEY = 'AIzaSyCJIsIQnCMi-DgF6AT0ZdeWnp8p9JUBG2U'
YOUR_API_KEY = 'AIzaSyDSEWM8wPAIPyz7lKxQ4MlNpchSORik05A'
google_places = GooglePlaces(YOUR_API_KEY)

In [67]:
for i in lists['school']:
    if i not in SL:
        try:
            query_result = google_places.text_search(i.decode('utf8'))
            for place in query_result.places:
                SL[i]={"name":place.name,"loc":place.geo_location,"id":place.place_id}
        except:
            print i,'|',school(i)
            break

In [88]:
SL2={}
for i in SL:
    SL2[i]=SL[i]
    SL2[i]['loc']={'lat':float(SL[i]['loc']['lat']),'lng':float(SL[i]['loc']['lng'])}
file('SL.json','w').write(json.dumps(SL2))

Stud


In [89]:
def uni(i):
    if i=='............................': tocode='No'
    elif i=='Erdoszentgyorgy': tocode='No'
    elif i=='Sehol': tocode='No'
    elif i=='Lesz': tocode='No'
    elif i=='oooo': tocode='No'
    elif i=='.......................': tocode='No'
    elif i=='majd k\xc3\xa9s\xc5\x91bb': tocode='No'
    elif i=='Ideciu de Jos': tocode='No'
    elif i=='.............................': tocode='No'
    elif i=='szakliceum': tocode='No'
    elif i=='Romania': tocode='No'
    elif i=='Liceu': tocode='No'
    elif i=='nincs \xc3\xa9s nem is lesz XD': tocode='No'
    elif i=='nici gand': tocode='No'
    elif i=='aaaa': tocode='No'
    elif i=='SEMI': tocode='No'
    elif i=='ugyanott': tocode='No'
    else: tocode=i
    return tocode+' university'

In [90]:
#studlist
UL={}
#not resolved list
noUL=set()

In [2]:
from googleplaces import GooglePlaces, types, lang
#YOUR_API_KEY = 'AIzaSyDzdVjSa6UoJHZvYgArra3Dt3WSZeUH4nQ'
#YOUR_API_KEY = 'AIzaSyCJIsIQnCMi-DgF6AT0ZdeWnp8p9JUBG2U'
#YOUR_API_KEY = 'AIzaSyDSEWM8wPAIPyz7lKxQ4MlNpchSORik05A'
#YOUR_API_KEY = 'AIzaSyCXIzhTpOq8kmx5bu2SuFWAZBE6vgyJgO0'
#YOUR_API_KEY = 'AIzaSyCGofhVYKtYMbU4j2lePW6jrfkBo7y9AAw'
#YOUR_API_KEY = 'AIzaSyB4sTQjtprWu7hP_LDHw0Hicg3tCqBbgRg'
#YOUR_API_KEY = 'AIzaSyBR1wdTdTpod7baeVHLxEUtSuYcGVBG3S0'
#YOUR_API_KEY = 'AIzaSyBd-9a-Dnl7x7BjWXQXdf0z2klN2Xo14AA'
#YOUR_API_KEY = 'AIzaSyBkLuQMPqFZex592hJoERW5lm--ymi99nw'
#YOUR_API_KEY = 'AIzaSyBUrDo2NogTLF07-hbIRWAkN1zPBd-HMyo'
#YOUR_API_KEY = 'AIzaSyDjOH0xfWZXjTeVZM58WNQiCMH4DhOVJBI'
#YOUR_API_KEY ='AIzaSyD2pu2vXc1RdKEqhtM8a45IZkvNW1C28Mo'
#YOUR_API_KEY='AIzaSyDGjht_g-dlz7jzx-Nk_P7dOCP_nueV3vc'
#YOUR_API_KEY='AIzaSyB0pZEw8T4bUFl6P43y0SBRhzMTM-dcFFk'
#YOUR_API_KEY='AIzaSyA_Ncq38a38jHnJu7_OeBVPbkDrgCfLUys'
#YOUR_API_KEY='AIzaSyC7O0Ec0ih55di-ozZrw-qjdbmGOIlasKI'
#YOUR_API_KEY='AIzaSyDXm0-AZLr5wAFbydbN7tkhV8rEnXdxlxg'
#YOUR_API_KEY='AIzaSyB3sVNAaED78fDDPqjMk4g0f4ZEaDvSMfs'
#YOUR_API_KEY='AIzaSyCvCElARdCPFDjwv0ISNMmGOLQM0TWhzm8'
#YOUR_API_KEY='AIzaSyCOlB9XY9vT-RbVkno5sFbgTwWhPwKT3Iw'
#YOUR_API_KEY='AIzaSyCgyvrCnGQUSVAj1DtQc-gjqIeGF4rInbs'
#YOUR_API_KEY='AIzaSyAUgC4RPfTR8oMgsoz6fkNzKGn43AE8JyU'
#YOUR_API_KEY='AIzaSyAGpXSQ-AnAbgbxuAJ9S0aMGWQp-kB5R54'
#YOUR_API_KEY='AIzaSyDO_EjeOtD8dbSlqHf5qSFiFVx8prHBHI4'

#with billing #My Project 10 on csaladenes@gmail.com account
YOUR_API_KEY='AIzaSyC8j2kUdpkNnA4U3YSkYWn20B-UljiPPM4'
google_places = GooglePlaces(YOUR_API_KEY)

In [365]:
print len(list(lists['studwhere']))
print len(UL)
print len(noUL)


4598
3667
932

In [8]:
query_result = google_places.text_search('Bergamo airport')
if len(query_result.places)>0: 
    place=query_result.places[0]
    #UL[i]={"name":place.name,"loc":place.geo_location,"id":place.place_id}

In [15]:
query_result.places[0]


Out[15]:
<Place name="Orio al Serio International Airport", lat=45.66957070000001, lng=9.7036313>

In [366]:
for ai in range(len(list(lists['studwhere']))):
    i=list(lists['studwhere'])[ai]
    if i not in UL:
        if i not in noUL:
            print ai,
            #time.sleep(2)
            try:
                query_result = google_places.text_search(i.decode('utf8'))
                if len(query_result.places)>0: 
                    place=query_result.places[0]
                    UL[i]={"name":place.name,"loc":place.geo_location,"id":place.place_id}
                else:
                    noUL.add(i)
            except:
                print i,'|',school(i)
                break

In [367]:
UL2={}
for i in UL:
    UL2[i]=UL[i]
    UL2[i]['loc']={'lat':float(UL[i]['loc']['lat']),'lng':float(UL[i]['loc']['lng'])}
file('UL.json','w').write(json.dumps(UL2))

In [373]:
noUL2=[]
for i in noUL:
    noUL2.append(i)
file('noUL.json','w').write(json.dumps(noUL2))

In [368]:
noUL


Out[368]:
{'"Babes Bolyai Egyetem"Tortenelem-Filozofia Kar',
 '"Babes-Bolyai" Szekelyudvarhely',
 '"Dr.Petru Groza" Agron\xc3\xb3miai Int\xc3\xa9zet , Kolozsv\xc3\xa1r, \xc3\xa1llatorvosi kar',
 '"Louis Pasteur" posztliceum Csikszereda',
 '"Lucian Blaga" Nagyszeben, "Simion B\xc4\x83rnu\xc5\xa3iu" Jogi Kar, Mesterk\xc3\xa9pz\xc5\x91',
 '"Vasile Lascar" College of Police, Campina',
 '"louis Pasteur"postliceum Csikszereda',
 '"vir\xc3\xa1gos r\xc3\xa9t s \xc3\xb6lel\xc5\x91 erd\xc5\x91 s l\xc3\xa9lekz\xc5\x91 \xc3\xa1lmok "sok-l\xc3\xa9tr\xc3\xa1s oskol\xc3\xa1ja',
 ',,,,,,,,,,,,,,,,',
 '-',
 '--',
 '---',
 '------',
 '--------',
 '----------------',
 '------------------------',
 '.',
 '..',
 '...',
 '....',
 '..........',
 '..............',
 '.................',
 '..................',
 '.......................',
 '............................',
 '.............................',
 '/',
 '00:00:01',
 '17\xc2\xba Redor',
 '1994elenabodi',
 '2 Ipari Liceum',
 '2 sz. szakk\xc3\xb6z\xc3\xa9piskola r\xc3\xa9gen',
 '3-as sz\xc3\xa1m\xc3\xba Ipari L\xc3\xadceum - Sepsiszentgy\xc3\xb6rgy',
 '34. Sz\xc3\xa1m\xc3\xba G\xc3\xa1bor \xc3\x81ron Cserk\xc3\xa9sz Csapat',
 '4clase la familila la omenia la femei si la grede',
 '5-\xc3\xb6s sz\xc3\xa1m\xc3\xba liceum',
 '516 ISZI',
 '6 osztaly',
 '8\xc3\xa1ltal\xc3\xa1nos',
 'A nagybet\xc5\xb1s \xc3\x89LET.',
 'A&M - \xc3\x81cs, asztalos munk\xc3\xa1k',
 'ADY ENDRE SAJTOKOLEGIUM NAGYVARAD',
 'AKG Bp, Sapientia EMTE Cs\xc3\xadkszereda',
 'AMG Asistent Medical Generalist at Gheorghe Marinescu',
 'AMG asistent medical generalist',
 'ASE Master - Analiza afacerilor si controlul performantei intreprinderii',
 'ASE Master - Comunicare in Afaceri',
 'ASE- Master Economie Europeana',
 'ASE-Master Managementul Afacerilor Publice Europene',
 'ASISTENT MEDICAL GENERALIST',
 'AUTO TERVEZ\xc5\x90 M\xc3\x89RN\xc3\x96KI',
 'AZ \xc3\x89LET ISKOL\xc3\x81JA AMIT SOHA NEM LEHET KIJ\xc3\x81RNI:)',
 'AZ \xc3\x89LET ISKOL\xc3\x81J\xc3\x81BA',
 'AZSES',
 'Academia de Arte Vizuale "Ioan Andreescu" 2000',
 'Academia de Avocacy- membru fondator Advocacy Grup Sebe\xc8\x99',
 'Academy of Art Ioan Andreescu Cluj (Kolozsv\xc3\xa1r)',
 'Ady Endre Sajt\xc3\xb3koll\xc3\xa9gium',
 'Ady Endre Sajt\xc3\xb3koll\xc3\xa9gium - Nagyv\xc3\xa1rad',
 'Ady Endre sajt\xc3\xb3koll\xc3\xa9gium, Nagyv\xc3\xa1rad',
 'Afaceri Lemn',
 'Ajtai abod Mihaly',
 'Akosfalvi altalanos iskola',
 'Altalanos Asszisztenskepzo',
 'Altalanos asszisztens',
 'Alumni MAN babat kita semua bersaudara',
 'Am terminat Sc.Gen Nr.4 "Sf.Ilie" Toplita,Harghita',
 'Amenajare si dezvoltare turistica',
 'Ana Aslan-AMG',
 'Antos Janos',
 'Applied Behaviour Analysis with autism and developmental disorders',
 'Art University: Stage design-costume design and fine arts',
 'Arta- Poet- Nurse',
 'Asistent Medical',
 'Asistent Medical Generalist',
 'Asistent Medical de Farmacie (AMF)',
 'Asitent Medical Generalist',
 'Asociatia Montessori International',
 'Asociatia de Psihoterapie Pozitiva',
 'Aut\xc3\xb3 versenyz\xc5\x91k',
 'Az elet nagy iskolaja',
 'Az nincs',
 'Az \xc3\x89let Iskol\xc3\xa1ja',
 'Az \xc3\xa9let iskol\xc3\xa1ja',
 'Az \xc3\xa9let iskol\xc3\xa1ja,ahol az Isten a tan\xc3\xa1r!!!',
 'Az \xc3\xa9let magasiskol\xc3\xa1ja',
 'Az \xc3\xa9let+a h\xc3\xbcly\xc3\xa9k',
 'B.B.T.E Testneveles es Sport-Gyogytorna',
 'B.E. Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91',
 'BAROTI IPARI LICEUM',
 'BBTE - Gyergy\xc3\xb3szentmikl\xc3\xb3si Tagozat',
 'BBTE - Teatru si Televiziune, Cluj-Napoca , Teatrology',
 'BBTE filol\xc3\xb3gia, teol\xc3\xb3gia, informatika stb.',
 'BBTE magyar nyelv \xc3\xa9s irodalomtudom\xc3\xa1nyi tanulm\xc3\xa1nyok mesteri',
 'BBTE teol\xc3\xb3gia-n\xc3\xa9met, ELTE \xc3\xb6sszehasonl\xc3\xadt\xc3\xb3 irodalomtudom\xc3\xa1ny Phd',
 'BBTE, KGST',
 'BBTE,Vall\xc3\xa1speda-t\xc3\xb6rt\xc3\xa9nelem',
 'BBTE- Biologia- geologia kar, Okologia szak',
 'BBTE-Tan\xc3\xadt\xc3\xb3 \xc3\x93von\xc5\x91k\xc3\xa9pz\xc5\x91',
 'BBTE-Tan\xc3\xadt\xc3\xb3 \xc3\xa9s \xc3\x93vodapedag\xc3\xb3gus szak',
 'BBTE;Spiru Haret',
 'BGF-PSZFK-ZA',
 'BGF. Kvifk. Ker. Szakmenedzser',
 'BHTEC, Budapest',
 'BKF, KOS',
 'BME - Budapesti M\xc5\xb1szaki \xc3\xa9s Gazdas\xc3\xa1gtudom\xc3\xa1nyi Egyetem,EKTF Matemetika tan\xc3\xa1ri',
 'BMF-KGK',
 'BRASS\xc3\x93I M\xc5\xb0SZAKI EGYETEM, FAIPARI KAR',
 'BUKARESTI GEOLOGIAI EGYETEM',
 'Babes - Bolyai Tudom\xc3\xa1nyegyetem, Sz\xc3\xa9kelyudvarhely',
 'Babes Bolyai - Geografia Turismului, Hyperion - Stiinte Economice',
 'Babes Bolyai Sz\xc3\xadnm\xc5\xb1v\xc3\xa9szeti',
 'Babes Bolyai T.E. Pszichologia es neveles tudomanyok kar',
 'Babes Bolyai Tudom\xc3\xa1nyegyetem K\xc3\xa9zdiv\xc3\xa1s\xc3\xa1rhelyi Kar',
 'Babes-Bolyai Tudomanyegyetem magiszteri kepzes kozigazgatasbol',
 'Babes-Bolyai Tudom\xc3\xa1nyegyetem, sz\xc3\xadnm\xc5\xb1v\xc3\xa9szet szak, 2oo4',
 'Babes-Bolyai, Gyergyoszentmiklosi kirendeltseg',
 'Babes-B\xc3\xb3lyai Tudom\xc3\xa1nyegyetem, Kommunik\xc3\xa1ci\xc3\xb3 & PR; Universitatea Petru Maior, Grafica & Design-Mas',
 'Babe\xc5\x9f-Bolyai Tudom\xc3\xa1nyegyetem Gyergy\xc3\xb3szentmikl\xc3\xb3s',
 'Babe\xc5\x9f-Bolyai Tudom\xc3\xa1nyegyetem, K\xc3\xa9zdiv\xc3\xa1s\xc3\xa1rhelyi Tagozat',
 'Bakoi Sportegyetem',
 'Balanbanyai 1-es iskola - \xc8\x98coala Gen. Nr.1 B\xc4\x83lan',
 'Balneofizioterapia',
 'Bank and Finance Bucharest Hyperion',
 'Baroti Szabo David Iskolacsoport',
 'Bathany ignantcz',
 'Bergwacht Nichlasmarkt',
 'Blonda De La Drept',
 'Bod Peter Aszisztenskepzo Foiskola',
 'Bod P\xc3\xa9ter Aszisztensk\xc3\xa9pz\xc5\x91 F\xc3\xb6iskola',
 'Bolyainfo',
 'Borb\xc3\xa1th K\xc3\xa1roly \xc3\x81ltal\xc3\xa1nos Iskola- Vargyas',
 'Braso Muszaki Egyetem',
 'Brasso Sport University',
 'Brass\xc3\xb3i Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Technikum',
 'Breackdance',
 'Bucky Badger',
 'Budapest M\xc3\xa9dia Int\xc3\xa9zet, Ady Endre Sajt\xc3\xb3koll\xc3\xa9gium',
 'Budapesti M\xc5\xb1szaki Egyetem G\xc3\xa9p\xc3\xa9szkar.Nyugatmagyarorsz\xc3\xa1gi Egyetem.Ap\xc3\xa1czai Kar',
 'Bukarest, Matematika',
 'Bukaresti Tudom\xc3\xa1nyegyetem, b\xc3\xb6lcs\xc3\xa9szkar, francia-olasz szak',
 'Bukaresti \xc3\x96kol\xc3\xb3giai Egyetem, Pszichol\xc3\xb3gia Kar-Mesterk\xc3\xa9pz\xc3\xa9s',
 'Business Administration Universitatea Dimitrie Cantemir',
 'B\xc3\xa1bes Bolyai University, Cluj Napoca, Community Development MA',
 'B\xc3\xa1lint Gy\xc3\xb6rgy \xc3\x9ajs\xc3\xa1g\xc3\xadr\xc3\xb3 Akad\xc3\xa9mia',
 'B\xc3\xa1lv\xc3\xa1nyosi Ny\xc3\xa1ri Szabadegyetem',
 'B\xc3\xa1nyageol\xc3\xb3gia Nagyb\xc3\xa1nya',
 'B\xc3\xb6g\xc3\xb6z-i \xc3\x81ltal\xc3\xa1nos Iskola',
 'C.\xc5\x9e.E. Liceul Teoretic "Nicolae B\xc4\x83lcescu"',
 'CAS Eventmanagement FHO (HFT Samedan, HTW Chur)',
 'CFPCIHT - Bucuresti',
 'CNMV',
 'COLEGiu DE INSTITUTORI BLAJ,SPIRU HARET,BABES BOLYAI',
 'CSIH - TBI',
 'Calepinus Nyelviskola / \xc5\x9ecoal\xc4\x83 de limbi / Language School / Sprachschule',
 'Cand te miri si Petrica fara frica',
 'Central European Wine Institute Budapest (CEWI.hu)',
 'Certified Zumba Instruction B1',
 'Chhaygaon College, Chhaygaon',
 'Clinical Psychology, Babes Bolyai University',
 'Coafor stilist Odorhei',
 'Colegiul Tehnic de Constructii si Arhitectura "Christian Kertsch"',
 'Colegiul Universitar Pedagogic \xc5\x9fi de Filologie Bra\xc5\x9fov',
 'Colegiul universitar medical bv',
 'College of Life and Hard Knocks',
 'Col\xc3\xa9gio Web',
 'Corvinus University of Budapest - Sz\xc3\xa1zadv\xc3\xa9g Academy of Politics',
 'Crisis- and Conflict Management',
 'Csikszereda erd\xc3\xa9szeti technikum',
 "Csillagok L'etoil\xc3\xa9s",
 'Cs\xc3\xa1ng\xc3\xb3 Esztenai M\xc3\xbcv\xc3\xa9szeti Szabadegyetem',
 'Cs\xc3\xadkr\xc3\xa1kosi Cserei Mih\xc3\xa1ly \xc3\x81ltal\xc3\xa1nos Iskola',
 'Cs\xc3\xb6vesk\xc3\xa9pz\xc5\x91',
 'Cursul de coafura Wisky',
 'Dani Gergely Altalanos Iskola',
 'David Guetta',
 'Departamentul de Psihopedagogie Special\xc4\x83',
 'Diabetol\xc3\xb3giai szak\xc3\xa1pol\xc3\xb3',
 'Dimitrie Cantemir K\xc3\xb6gazdas\xc3\xa1g',
 'Dimitrie Cantemir Ms',
 'District Institute of Education and Training (DIET) Mandi',
 'Dr Banyai Janos',
 'Dr Nyulas Ferenc Altalanos Iskola',
 'Dr.P.Boros Fortun\xc3\xa1t',
 'Dr.P.Boros Fortun\xc3\xa1t,Zetelaka',
 'Duna\xc3\xbajv\xc3\xa1rosi F\xc5\x91iskola , MUTF, Szekelyudvarhely , BMF -RKK Budapest',
 'D\xc3\xa9l-Alf\xc3\xb6ldi Talentum Akad\xc3\xa9mia (DELTA)',
 'D\xc3\xa9l-alf\xc3\xb6ldi Talentum Akad\xc3\xa9mia',
 'D\xc3\xb6gi Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Technikum',
 'ECO Infrastructuri pentru Transporturi si Lucrari de Arta',
 'ECTS - Nagyszeben',
 'EG\xc3\x89SZSEG\xc3\x9cGYI POSZTLICEUM',
 'ELTE Filmtudom\xc3\xa1ny Tansz\xc3\xa9k',
 'ELTE K\xc3\xa1rp\xc3\xa1t-medencei Magyar Ny\xc3\xa1ri Egyetem, Term\xc3\xa9szettudom\xc3\xa1nyi szekci\xc3\xb3',
 'ELTE MSc and Comp Phys MSc UBBCLUJ - Kolozsv\xc3\xa1r',
 'EMTE PR',
 'EMTE, Kommunik\xc3\xa1ci\xc3\xb3 \xc3\xa9s K\xc3\xb6zkapcsolatok',
 'EMTE-communication & Pr',
 'EU-s szamitogepes tanfolyam',
 'EUROCOR- Inspector Resurse Umane',
 'Ecobiotehnologii Agricole si Alimentare, Universitatea Transilvania',
 'Egeszsegugyi Foiskola Sepsiszentgyorgy',
 'Egeszsegugyi Foiskola Szekelyudvarhely',
 'Egeszsegugyi Liceum',
 'Egeszsegugyi Posztliceum',
 'Egeszsegugyi posztlici',
 'Egeszsegugyi posztlici Vajdahunyad',
 'Egeszsegugyi technicum,higienia szak.Marosvasarhely',
 'Egeszsegugyi technikum Csikszereda',
 'Egyik Sem',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Asszisztens',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Aszisztens K\xc3\xa9pz\xc5\x91',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi F\xc5\x91iskola Sz\xc3\xa9kelyudvarhely',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi N\xc5\x91v\xc3\xa9rk\xc3\xa9pz\xc5\x91 Sz\xc3\xa9kelyudvarhely',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum, Sepsiszentgy\xc3\xb6rgy',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Technikum',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Tehnikum',
 'Eg\xc3\xa9sz\xc3\xa9g\xc3\xbcgyi f\xc5\x91iskola Sz\xc3\xa9kelyudvarhely',
 'Eg\xc3\xa9zs\xc3\xa9g\xc3\xbcgyi f\xc5\x91iskola Sepsiszentgy\xc3\xb6rgy',
 'Epiteszeti Liceum M-vasarhely',
 'Erd\xc5\x91f\xc3\xbclei \xc3\x81ltal\xc3\xa1nos Iskola',
 'Erd\xc5\x91szentgy\xc3\xb6rgyi "Szent Gy\xc3\xb6rgy" iskolak\xc3\xb6zpont',
 'Escola Secund\xc3\xa1ria Manuel Lopes - Calabaceira',
 'Ethnography',
 'Eu Pass,Budapest',
 'Eugen Nicoara Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum,Csikszereda',
 'Eugen Nicoara-asistent medical generalist',
 'European masters in Conference Interpretation',
 'Extensia Universitar\xc4\x83 Gheorgheni',
 'Ezut\xc3\xa1n',
 'F.E.G. Education Marin Preda',
 'FACULTATEA VIETII',
 'FAT // facultatea de arhitectur\xc4\x83 timi\xc8\x99oara',
 'FBI Swat Police in Need',
 'FEG BRASOV - Asistent Medical Generalist',
 'FILOLOGIA EGYETEM- BAKO',
 'FISIR',
 'FSEGA -Managementul Resurselor Umane',
 'Factultatea de Stiinte Politice-Comunicare si Relatii Publice, 2008 Facultatea de Horticultura',
 'Facultatea Vieti',
 'Facultatea de Comunicare si Relatii Publice, SNSPA',
 'Facultatea de Drept si stang',
 'Facultatea de Educatie fizica si sport tar',
 'Facultatea de Marketing si Afaceri Internationale Spiru Haret',
 'Facultatea de Smecherie',
 'Facultatea de Stiinte Politice, Administrative si ale Comunicarii(Comunicare si Relatii Publice), Univ. Babes Bolyai Cluj-Napoca',
 'Facultatea de Stiinte ale Miscarii Sportului si Sanatatii',
 'Facultatea de Stiinte si Litere',
 'Facultatea de pregatire casnik',
 'Faculty of Architecture and Urbanism, UTCN, Cluj -Napoca, Romania',
 'Faipari Egyetem Brass\xc3\xb3',
 'Faipari liceum',
 'Farruko',
 'Federatia Ecologica Green - Asistent Generalist',
 'Fels\xc5\x91fok\xc3\xba Mg G\xc3\xa9p\xc3\xa9sz',
 'Ferenczi Gy\xc3\xb6rgy \xc3\xa9s a Rackajam',
 'Finommechanika technicum',
 'Flair Mojito Professional American Bartender School',
 'Focsani-i Electrica liceum',
 'Fodr\xc3\xa1szati v\xc3\xa9gzetts\xc3\xa9g',
 'Fogarasy Mih\xc3\xa1ly M\xc5\xb1szaki L\xc3\xadceum',
 'Fsega Dezvoltare Regionala Durabila',
 'Fundatia "Laurentia"Scoala Postliceala Sanitara"Eugen Nicoara"-Sighisoara',
 'Funny Things and Video',
 'GAMAN JANOS SZAKKOZEPISKOLA',
 'GATE logisztikai kar',
 'GF-Bp., BBTE-K-v\xc3\xa1r, pszichol\xc3\xb3gia',
 'GRIFF Feln\xc5\x91ttk\xc3\xa9pz\xc5\x91 Szakk\xc3\xb6z\xc3\xa9piskola',
 'GRUP SCOLAR AGRICOL CADEA',
 'GSS Kabo',
 'Gabor Aron Liceum',
 'Gabor Aron Liceum-Kezdivasarhely',
 'Gabor Aron Muszaki Oktatasi Kozpont',
 'Gabor Aron Szakkozepiskola',
 'Gaia Consulting-Vallalatmenedzsment',
 'Gaman Janos',
 'Gaman Janos Mezogazdasagi es Elelmiszeripari Szakiskola',
 'Gandul Bun',
 'Gasztron\xc3\xb3mia',
 'Geografia Turismului-Gheorgheni',
 'Geol\xc3\xb3gus k\xc3\xa9pz\xc3\xa9s magyar nyelven, BBTE, Kolozsv\xc3\xa1r',
 'George Baritiu Brass\xc3\xb3',
 'Gepgyarto iskolakoszpont',
 'Gepgyartoipari Iskolakozpont',
 'Gestiunea si Dezvoltarea Resursei Umane',
 'Gh.Marinescu Egeszsegugyi foiskola , Szinmuveszeti egyetem',
 'Gheorghe Asachi Politechnikai Intezet',
 'Gimn. de Stat Tudor Vladimirescu',
 'Gimnazio Tre',
 'Gimnaziul de stat Aurel Mosora Sighisoara',
 "Grey's Anatomy",
 'Grup Scolar "Ioachim Pop" Ileanda, Romania',
 'Grup Scolar Agricol Timotei Cipariu Dumbraveni',
 'Grup Scolar Ioachim Pop Ileanda',
 'Grup Scolar Ion Vlasiu',
 'Grup Scolar Mihail Sadoveanu Borca',
 'Grupul Scolar \xe2\x80\x9dIon Vlasiu\xe2\x80\x9d Tirgu-Mures',
 'Gyula Semmelweis E\xc3\x9c',
 'Gyulafeh\xc3\xa9rv\xc3\xa1ri R\xc3\xb3mai Katolikus Hittudom\xc3\xa1nyi F\xc5\x91iskola',
 'Gyulakuti Altalanos Iskola',
 'Gy\xc3\xb3gyszert\xc3\xa1ri asszisztens',
 'Gy\xc3\xb3gyszert\xc3\xa1ri asszisztens,\xc3\x81ltal\xc3\xa1nos asszisztens',
 'G\xc3\xa1bor D\xc3\xa9nes F\xc5\x91iskola, univ. Spiru haret',
 'G\xc3\xa1bor \xc3\x81ron "M\xc5\xb1v\xc3\xa9szeti Iskola" Szakk\xc3\xb6z\xc3\xa9p iskola',
 'G\xc3\xa1bor \xc3\x81ron Elektronikai Posztliceum-K\xc3\xa9zdiv\xc3\xa1s\xc3\xa1rhely',
 'G\xc3\xa1bor \xc3\x81ron Ipari Iskolak\xc3\xb6zpont tanul\xc3\xb3i - K\xc3\xa9zdiv\xc3\xa1s\xc3\xa1rhely',
 'G\xc3\xa1bor \xc3\x81ron M\xc3\xbcszaki Oktat\xc3\xa1si K\xc3\xb6zpont',
 'G\xc3\xa1bor \xc3\x81ron M\xc5\xb1szaki Oktat\xc3\xa1si K\xc3\xb6zpont',
 'G\xc3\xa1bor \xc3\x81ron \xe2\x80\x9eM\xc5\xb1v\xc3\xa9szeti Iskola\xe2\x80\x9d Szakk\xc3\xb6z\xc3\xa9piskola',
 'G\xc3\xa1lfi S\xc3\xa1ndor \xc3\x81ltal\xc3\xa1nos Iskola Kob\xc3\xa1tfalva',
 'G\xc3\xa9pgy\xc3\xa1rt\xc3\xb3 Iskolak\xc3\xb6zpont',
 'HDU (Harley-Davidson University)',
 'Haggggyyy\xc3\xa1\xc3\xa1\xc3\xa1\xc3\xa1 M\xc3\xa1\xc3\xa1\xc3\xa1!!!!',
 'Hittudom\xc3\xa1nyi F\xc5\x91iskola Gyulafeh\xc3\xa9rv\xc3\xa1r',
 'Hmmm',
 'Hogwarts School of Witchcraft and Wizardry',
 'Hova m\xc3\xa9g azt is???',
 'Hyperion Fogtechnikum Sepsiszentgyorgy',
 'Hyperion Sfantu Gheorghe',
 'I.B. Rhema - Timisoara',
 'IAA School Romania',
 'IATC IL Caragiale-actorie, UAT Tirgu-Mures-regie',
 'IDF Military College',
 'IES Guillem de Bergued\xc3\xa0',
 'IIS TARGU MURES',
 'IKATAN ALUMNI Mts & MA IHYAUL ULUM MANYAR LAMONGAN',
 'INSTITUTUL DE MEDICINA HOMEOPATA MOUNT CLEMENT MI US',
 'IP/3 Marosvasarhely',
 "IPSAR Mondovi' G. Giolitti",
 'ITGU Blaj',
 'Idegenforgalmi Technikum',
 'Imre Domokos Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi posztliceum',
 'In desfasurare',
 'Inginer',
 'Institutul Bancar Roman-Cluj Napoca 2003',
 'Institutul de Moda ST',
 'Instructor monitor Apusenia adventure',
 'International Business Administration Masters UBB',
 'International Institute of Tourism and Management, Krems',
 'Islam Explorer',
 'Isten Egyetem\xc3\xa9nek Kifogyhatatlan Szeretete',
 'Istituto di Liturgia Pastorale',
 'Iubiri Secrete',
 'Ivana Chubbuck - Mandragora Movies Acting Studio',
 'JGYTF',
 'Jack Daniels Drinking School',
 'Jog,George Baritiu Egyetem',
 'Jurnalism \xc5\x9fi Rela\xc5\xa3ii Publice, F\xc5\x9eSU, ULBS',
 'J\xc3\xa1szvasz\xc3\xa1ri kertesz\xc3\xa9ti egyetem',
 'J\xc3\xa1szv\xc3\xa1s\xc3\xa1r,Politehnika, G\xc3\xa9p\xc3\xa9sz kar',
 'KJF BP',
 'KJF,BBE',
 'KOTK - Jogi asszisztens',
 'KVIF',
 'Kem\xc3\xa9ny J\xc3\xa1nos Elm\xc3\xa9leti L\xc3\xadceum',
 'Kereskedelmi F\xc3\xb6iskola Iasi',
 'Kereskedelmi technikus,\xc3\xa9retts\xc3\xa9gi',
 'Kezdivasarhelyi Reformatus Kollegium',
 'Kodolanyi Janos University College - Sz\xc3\xa9kesfeh\xc3\xa9rv\xc3\xa1r (Hungary), Kemi-Tornio Polytechnic - Tornio (Finland)',
 'Kolozsvar-i Kereskedelmi Tehnikum',
 'Kolozsv\xc3\xa1ri \xc3\x89pit\xc3\xa9szeti Techinkum',
 'Kolozzsv\xc3\xa1ri Elektro',
 'Komoly edz\xc3\xa9sek technik\xc3\xa1k \xc3\xa9s modszerek',
 'Konoha Ninja Academy (\xe5\xbf\x8d\xe8\x80\x85\xe5\xad\xa6\xe6\xa0\xa1, Akadem\xc4\xab)',
 'Konsza Samu Gimnazium Nagybacon',
 'Koret School of Veterinary Medicine',
 'Korondi Elmeleti Liceum',
 'Korondi K\xc3\xb6z\xc3\xa9piskola',
 'Korondi k\xc3\xb6z\xc3\xa9piskola',
 'Kozgazdasagtudomanyi Egyetem Bukarest',
 'K\xc3\x96R\xc3\x96SI CSOMA S\xc3\x81NDOR TANIT\xc3\x93K\xc3\x89PZ\xc5\x90 B\xc3\x89K\xc3\x89SCSABA',
 'K\xc3\xa1ntor-Tanit\xc3\xb3k\xc3\xa9pz\xc5\x91',
 'K\xc3\xa1ntor-Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91 F\xc5\x91iskola',
 'K\xc3\xa1ntor-Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91 F\xc5\x91iskola, Marosv\xc3\xa1s\xc3\xa1rhely',
 'K\xc3\xa1roli G\xc3\xa1sp\xc3\xa1r K\xc3\xa1ntor-Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91',
 'K\xc3\xa1rolyi G\xc3\xa1sp\xc3\xa1r Institute of Theology and Mission',
 'K\xc3\xa9pz\xc5\x91m\xc5\xb1v\xc3\xa9szeti F\xc5\x91iskola Iasi',
 'K\xc3\xb3s K\xc3\xa1roly Topografia',
 'K\xc3\xb6nyvel\xc3\xa9si technikum',
 'K\xc3\xb6zgazdas\xc3\xa1gi egyetem Brass\xc3\xb3',
 'K\xc3\xb6zgazdas\xc3\xa1gtan,Bukarest',
 'K\xc5\x91r\xc3\xb6si Csoma S\xc3\xa1ndor-Iskolak\xc3\xb6zpont, Kov\xc3\xa1szna',
 'LICEUL AGRICOL TIMOTEI CIPARIU DUMBRAVENI',
 'LOUIS PASTEUR EGESZSEG\xc3\x9cGYI POSZTLICEUM CSIKSZEREDA',
 'LOUIS PASTEUR Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi f\xc5\x91iskola',
 'La Puscarie',
 'La Scoala :x',
 'Laborant',
 'Landwirtliche hochschule',
 'Lauree Triennali Dell Area Sanitaria.',
 'Law and Journalism',
 'Lesz',
 'Lic.Ind.Nr.3 Cluj-Napoca',
 'Liceul Agricol Ciumbrud',
 'Liceul Economic Administrativ si de Servicii-Calimanesti',
 'Liceul Economic Calimanesti',
 'Liceul Industrial nr.3 C.F.R. Brasov',
 'Liceul Tehnologic " Cristofor Nako "',
 'Liceul Teoretic "C.R. Vivu" Teaca',
 'Liceul Teoretic "Sfantu Nicolae"',
 'Liceul Teoretic C.D. Nenitescu Brasov',
 'Liceul Teoretic Dumbraveni',
 'Liceul de Smecherie si Prosteala pe Fata',
 'Logos-Hungary Kereszt\xc3\xa9ny F\xc5\x91iskola',
 'Louis Pasteur Egeszsegugyi Posztliceum',
 'Louis Pasteur Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi K\xc3\xb6zpont',
 'Louis Pasteur Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum',
 'Louis Pasteur Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum Csikszereda',
 'Louis Pasteur Miercurea Ciuc',
 'Louis Pasteur egeszsegugyi posztliceum, Csikszereda',
 'Louise Pasteur Csikszereda',
 'Lucian Blaga Szeben/ Kozgazdasz',
 'MA Visual and Media Anthropology',
 'MAFIA WARS',
 'MAROSI GERGELY',
 'MBC - Molecular Biotechnology Center',
 "METT - European Master's in Translation Studies and Terminology",
 'MFC-CIG',
 'MINE PETROL GEOLOGIE',
 'Maga az \xc3\xa9let xD',
 'Magyar K\xc3\xa9pz\xc5\x91m\xc5\xb1v\xc3\xa9szeti F\xc5\x91z\xc5\x91iskola',
 'Magyar Tannyelv\xc5\xb1 Mag\xc3\xa1n-szakk\xc3\xb6z\xc3\xa9piskola Als\xc3\xb3bodok',
 'Magyar nyelv \xc3\xa9s irodalom szak, Kolozsv\xc3\xa1r',
 'Magyaroi Alt. Iskola 5-8 b. Osztaly',
 'Mai multe',
 'Majdnem',
 'Management of Political Organizations, MA at FSPAC',
 'Manager de succes',
 'Manele',
 'Marketing si Comert Exterior',
 'Marosv\xc3\xa1s\xc3\xa1rhelyi 3 \xc3\xa9ves Pedag\xc3\xb3giai F\xc5\x91iskola',
 'Marosv\xc3\xa1s\xc3\xa1rhelyi Orvosi \xc3\xa9s Gy\xcf\x8cgyszer\xc3\xa9szeti Egyetem',
 'Marosv\xc3\xa1s\xc3\xa1rhelyi Reform\xc3\xa1tus diak\xc3\xb3nia k\xc3\xa9pz\xc5\x91',
 'Marosv\xc3\xa1s\xc3\xa1rhelyi Tan\xc3\xa1rk\xc3\xa9pz\xc5\x91 F\xc5\x91iskola',
 'Marosv\xc3\xa1s\xc3\xa1rhelyi \xc3\x89p\xc3\xadt\xc3\xa9szeti Technikum',
 'Masini si Instalati',
 'Master "Dreptul european si na\xc8\x9bional al afacerilor\'\'\'UBB',
 'Master "Stiinte Penale si Criminalistica"',
 'Master - Amenajare si dezvoltare turistica',
 'Master ADT',
 'Master Drept IJPL Universitatea Petru Maior',
 'Master G.C.I. Transilvania BV',
 'Master Ingineria si Managementul Gazelor Naturale',
 'Master MRAI Universitatea Babes Bolyai',
 'Master Management Hotelier',
 'Master Managementul resurselor umane',
 'Master Psihologia Resurselor Umane \xc5\x9fi S\xc4\x83n\xc4\x83tate Organiza\xc5\xa3ional\xc4\x83',
 'Master Psihologia Sanatatii',
 'Master Psihologie Clinica, Consiliere Psihologica si Psihoterapie',
 'Master Psihologie Educationala si Consiliere',
 'Master Resurse Umane si Sanatate Orgaizationala, Psihologie UBB',
 'Master UPM. Institutii judiciare si profesii liberale',
 'Master Univ."PETRU MAIOR" Tg-Mures',
 'Master of Pedagogy',
 "Master's Degree",
 "Master's Degree in Quality Management",
 'Master-Biotehnologii si Siguranta Alimentara',
 'Master-Institutii Judiciare si Profesii Liberale',
 'Master: Consiliere scolara si asistenta psihopedagogica',
 'Master: Management Organizational si al Resurselor Umane',
 'Master: Management, consiliere si asistenta psihopedagogica',
 'MasterEstetic',
 'Masterand la Managementul Organizatiilor si activitatiilor sportive-UBB',
 'Masterat Consiliere si Interventii Psihologice in Dezvoltarea Umana',
 'Masterat Managementul Dezvoltarii Afacerilor',
 'Masterat european in drepturile copiilor',
 'Masterate in Project Management',
 'Masuratori terestre si cadastru UBB',
 'Mesteriskola',
 'Metalotechnica Tirgu-Mures',
 'Mezogepesz szakiskola',
 'Miksz\xc3\xa1th K\xc3\xa1lm\xc3\xa1n \xc3\x81ltal\xc3\xa1nos Iskola (Sodronyos)',
 'Milyen iskola?Emeletes.',
 'Modern Eur\xc3\xb3pai Tanulm\xc3\xa1nyok Akad\xc3\xa9mi\xc3\xa1ja',
 'Modern Eur\xc3\xb3pai Tanulm\xc3\xa1nyok Akad\xc3\xa9mi\xc3\xa1ja (Sport/Gy\xc3\xb3gymassz\xc5\x91r)',
 'Molnar Jozsias I-VIII osztalyos iskola',
 'Mts miftahul ulum 19 maarif',
 'Mubarak Police Academy',
 'Multschule wo sonst? Alles Gute kommt von da !!',
 'Murokegyetem',
 'Music Universitat Kronstadt - Dirigent Master',
 'M\xc3\x81G, UGB, ASE',
 'M\xc3\xa1rton \xc3\x81ron \xc3\x81ltal\xc3\xa1nos Iskola',
 'M\xc3\xa1rtonffi J\xc3\xa1nos',
 'M\xc3\xa1rtonffi J\xc3\xa1nos \xc3\x81ltal\xc3\xa1nos iskola',
 'M\xc3\xa9g nem tartok ott',
 'M\xc3\xa9g sehol.',
 'M\xc3\xa9g sehova',
 'M\xc3\xa9g sehova, majd fogok.',
 'NLP Resonanz',
 'NU EXISTA',
 'NVQ business and administration',
 'Nabinagar Govt. College',
 'Nagyb\xc3\xa1nya: Biol\xc3\xb3gia',
 'Nagygalambfalvi \xc3\x81ltal\xc3\xa1nos Iskola',
 'Nagyv\xc3\xa1thy J\xc3\xa1nos K\xc3\xb6z\xc3\xa9piskola Szakiskola \xc3\xa9s Koll\xc3\xa9gium',
 'National School of Political Science and Public Administration',
 'Natur- og kulturformidlingsuddannelsen I Hj\xc3\xb8rring',
 'Nem Mindegy,hogy Hol??? Mit Kiv\xc3\xa1ncsiskodsz??:))))',
 'Nem dolgozom,mivel a rohadt iskola padj\xc3\xa1t koptatom :',
 'Nem sz\xc3\xa1m\xc3\xadt, mit gondolsz r\xc3\xb3lam, csak az sz\xc3\xa1m\xc3\xadt, hogy ki vagyok! _"',
 'Nem volt',
 'Nemnet',
 'Nepi egyetem Csik-SZereda',
 'Nici Una',
 'Nincs kedvem tanulni!',
 'Novenytermesztes eretsegi',
 'Nyet University, NyetCity',
 'Nyir\xc5\x91 J\xc3\xb3zsef \xc3\x81ltal\xc3\xa1nos Iskola',
 'Nyugati Tudom\xc3\xa1nyegyetem Temesv\xc3\xa1r K\xc3\xa9pz\xc5\x91m\xc5\xb1v\xc3\xa9szeti kar',
 'N\xc3\xa1dasdy K\xc3\xa1lm\xc3\xa1n Sz\xc3\xadn\xc3\xa9szk\xc3\xa9pz\xc5\x91',
 'N\xc3\xa9meth L\xc3\xa1szl\xc3\xb3 Elm\xc3\xa9leti L\xc3\xadceum',
 'O.C.T\xc4\x83slovanu Liceum',
 'One Direction Music University',
 'Orvosi \xc3\xa9s Gy\xc3\xb3gyszer\xc3\xa9szeti Egyetem, Kl\xc3\xbazs-napocahontas',
 'Ospatari-Premium',
 'Oxford de Mangalia',
 'PECSI SIMON',
 'PKE,Graphic designer',
 'POTE \xc3\x81OK',
 'Paintball Word!',
 'Pali Szent Vince Egeszsegugyi Technikum',
 'Pali Szent Vince Egeszsegugyi asszisztens kepzo',
 'Pali Szent Vince Egeszsegugyi posztliceum',
 'Pali Szent Vince asszisztens kepzo',
 'Pali Szent Vincze Egeszsegugyi Foiskola',
 'Partiumi Kereszteny Egyetem (Germanisztika)',
 'Partiumi Kereszt\xc3\xa9ny Egyetem-k\xc3\xb6zgazdas\xc3\xa1gtan,Babes-Bolyai Tudom\xc3\xa1nyegyetem-t\xc3\xb6rt\xc3\xa9nelem',
 'Pedagogiai Foiskola-Marosvasarhely',
 'Pedagogiai Foiskola.Testnevelesi Egyetem.Marosvasarhely.',
 'Pedagogy',
 'Peste Tot si Nicaieri',
 'Petrozsenyi Tehnikai Egyetem',
 'Petru Maior University Internal Relations and European Studies',
 'Pet\xc5\x91fi S\xc3\xa1ndor Iskolak\xc3\xb6zpont - Cs\xc3\xadkd\xc3\xa1nfalva',
 'Pet\xc5\x91fi S\xc3\xa1ndor Iskolak\xc3\xb6zpont Csikd\xc3\xa1nfalva',
 'Pet\xc5\x91fi S\xc3\xa1ndor K\xc3\xb6z\xc3\xa9piskola Csikd\xc3\xa1nfalva',
 'Pet\xc5\x91fi S\xc3\xa1ndor iskola di\xc3\xa1kjai,tan\xc3\xa1rai',
 'Pet\xc5\x91fi S\xc3\xa1ndor iskolak\xc3\xb6zpont-Cs\xc3\xadkd\xc3\xa0nfalva',
 'PhD student',
 'Phoenix (classics journal)',
 'Picie jabola',
 'Pimp academy',
 'Pincer',
 'Post liceal sanitar Eugen Nicoara Reghin 2004',
 'Postliceala Banyai Janos',
 'Posztliceum-Technikum',
 'Posztlice\xc3\xa1lis k\xc3\xb6nyvt\xc3\xa1ros k\xc3\xa9pz\xc3\xa9s Busteni',
 'Preuniversitaria XXI',
 'Pszichologia Szeben, Mentalhigiene',
 'Pszichologia es Nevelestudomanyok',
 'Pszichol\xc3\xb3gia',
 'Pszichol\xc3\xb3gia \xc3\xa9s Nevel\xc3\xa9studom\xc3\xa1nyok',
 'Puzs\xc3\xa1r Klaudia n\xc5\x91i,f\xc3\xa9rfi,gyermekfodr\xc3\xa1sz',
 'P\xc3\xa1li Szent Vince Egeszseg\xc3\xbcgyi F\xc5\x91iskola',
 'P\xc3\xa1li Szent Vince Eg\xc3\xa8szs\xc3\xa8g\xc3\xbcgyi Asszisztensk\xc3\xa8pz\xc3\xb6',
 'P\xc3\xa1li Szent Vince Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi F\xc5\x91iskola,Sz\xc3\xa9kelyudvarhely',
 'P\xc3\xa1li Szent Vince Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Posztliceum',
 'P\xc3\xa1li Szent Vince Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi f\xc3\xb6iskola Sz\xc3\xa9kelyudvarhely',
 'P\xc3\xa9nz Kell az \xc3\x89lethez Nem Iskola :D',
 'P\xc3\xa9nz\xc3\xbcgy - Management - K\xc3\xb6nyvel\xc3\xa9s',
 'P\xc3\xa9nz\xc3\xbcgy Kerskedelmi technikum',
 'RAU, Economia Turismului Intern si International,ASE Master:Administrarea Afacerilor in Turism',
 'Radv\xc3\xa1nyi Gy\xc3\xb6rgy K\xc3\xb6z\xc3\xa9piskola',
 'Rapidfans Targu Mures',
 'Reflexo Relax Therapy',
 'Rekre\xc3\xa1ci\xc3\xb3szervez\xc3\xa9s \xc3\xa9s eg\xc3\xa9szs\xc3\xa9gfejleszt\xc3\xa9s',
 'Romanian Art and Play Therapy Association',
 'Romanian Military Police',
 'Rota Dos Concursos',
 'Roxfort Boszork\xc3\xa1ny- \xc3\xa9s Var\xc3\xa1zsl\xc3\xb3k\xc3\xa9pz\xc5\x91',
 'Royal University of Uselessness',
 'Rudnay Gyula K\xc3\xb6z\xc3\xa9piskola',
 'Ruhatervez\xc3\xa9s',
 'R\xc3\xa1tkai T\xc3\xadmea Oktat\xc3\xa1si St\xc3\xbadi\xc3\xb3',
 'SEPSISZENTGYORGY AGRO',
 'SEX+',
 'SIS-Gyulafeh\xc3\xa9rv\xc3\xa1r, PUL - R\xc3\xb3ma',
 'SJABV',
 'SMECERIE',
 'SNK NeoGeo',
 'SNSPA - Comunicare si Relatii Publice',
 'SZEKELYUDVARHELYI EGEZSEGUGYI POSZTLICEUM',
 'Sajnos nem j\xc3\xa1rtam sem f\xc5\x91iskol\xc3\xa1ra, sem egyetemre.',
 'Sajnos nincs.',
 'Sana Firdos',
 'Sapientia EMTE Biom\xc3\xa9rn\xc3\xb6ki Szakok',
 'Sapientia EMTE, M\xc5\xb1szaki \xc3\xa9s T\xc3\xa1rsadalomtudom\xc3\xa1nyi Kar',
 'Scary Movie',
 'Scoala C.O.O.P.',
 'Scoala Nationala de Masaj "Or-Co" & "Corpore Vital"',
 'Scoala Postliceala LOUIS PASTEUR / Miercurea Ciuc',
 'Scoala Postliceala Louis Pasteur-M-Ciuc,Spiru Haret-LLR.',
 'Scoala Postliceala Sanitara "Tamasi Aron"',
 'Scoala Postliceala Sf.Bartolomeu',
 'Scoala Postliceala Teologico-Sanitara Reformata Tg.Mures',
 'Scoala Postliceala Teologico-Sanitara \xc2\xa8Bod Peter\xc2\xa8',
 'Scoala Postliceala \xe2\x80\x9eLouis Pasteur" din Miercurea-Ciuc',
 'Scoala Postliceala-Toplita/2000',
 'Scoala Racos',
 'Scoala Tehnica U.A. Brasov',
 'Scoala Vietii',
 'Scoala Vietii,sectia Nu bate pasul pe loc',
 'Scoala Vietii.',
 'Scoala Vietiii',
 'Scoala coafura Diva Tg.Mures',
 'Scoala cu clasele I-VIII Barcani',
 'Scoala de Asamblare a Bicicletelor',
 'Scoala de Smekeri',
 'Scoala de arte si meserii todiresti(sam)',
 'Scoala de corectie',
 'Scoala de maistru mecanic auto Ramnicu Valcea',
 'Scoala generala cu Clasele I-VIII Tileagd',
 'Scoala postliceala PROHUMANITAS',
 'Scoala vieti pe propria piele',
 'Scoala vietii :-) si cea mai importanta!',
 'Scoala vietii in Romania.',
 'Scooby-Doo',
 'Secretariat',
 'Seho semi seho senki',
 'Sepsiszentgyorgyi Egeszsegugyi Postliceum',
 'Sikl\xc3\xb3dy L\xc5\x91rinc',
 'Silviculture',
 'Sover Elek Iskolak\xc3\xb6zpont',
 'Spiru Haret - Szociol\xc3\xb3gia 2011',
 'Spiru Haret Foldrajz',
 'Spiru Haret Od.Secuiesc',
 'Spiru Haret Sz\xc3\xa9kelyudvarhely',
 'Spiru Haret, k\xc3\xb6zigazgat\xc3\xa1s',
 'Spiru Haret,konyvelosegi szak',
 'Sporting Activities Management',
 'Stefan Gheorghiu',
 'Studied Psychology at Master Psihologie Educationala si Consilier',
 'Studied Theatre and Television at Babe\xc5\x9f-Bolyai University',
 'Studiert Entrepreneurship & Business Management hier: ACADEMIA DE STUDII ECONOMICE DIN BUCURESTI',
 'Studying Psychology at Universitatea Dimitrie Cantemir',
 'Sue\xc3\xb1os y Creatividad',
 'Sulyok Istvan Foiskla',
 'Szakk\xc3\xa9pz\xc5\x91',
 'Szarbon, "Te sp\xc3\xa2nzur de limb\xc4\x83" mesteri',
 'Szebeni \xe2\x80\x9eLucian Blaga\xe2\x80\x9d Egyetem K\xc3\xb6zgazdas\xc3\xa1gi kar',
 'Szekelyf\xc3\xb6ld',
 'Szekelyudvarhely Spiru Haret',
 'Szekelyudvarhelyi Egeszsegugyi Liceum',
 'Szeksz\xc3\xa1rd, Kelemen E. Szki.',
 'Szinten zenesz',
 'Szov\xc3\xa1tai Liceum',
 'Sz\xc3\xa9kely Bertalan \xc3\x81ltal\xc3\xa1nos Iskola',
 'Sz\xc3\xa9kelyudvarhely-Spiru Haret',
 'Sz\xc3\xa9pm\xc3\xadves Szakk\xc3\xa9pz\xc5\x91 Iskola',
 'S\xc3\xb3v\xc3\xa1radi \xc3\xa1ltal\xc3\xa1nos iskola',
 'S\xc3\xb6v\xc3\xa9r Elek Szakk\xc3\xb6z\xc3\xa9piskola - Gyergy\xc3\xb3alfalu',
 'TA College of Nursing,Transylvania-Romania',
 'TCM',
 'TCM Brasov sectia MU',
 'TEAMWORK & LEADERSHIP',
 'Tamasi Aron Egeszsegugyi Noverkepzo',
 'Tamasi Aron Egeszsegugyi foiskola',
 'Tam\xc3\xa1si \xc3\x81ron Gimn\xc3\xa1zium Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Asszisztensk\xc3\xa9pz\xc5\x91',
 'Tam\xc3\xa1si \xc3\x81ron \xc3\x81ltal\xc3\xa1nos Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Asszisztensk\xc3\xa9pz\xc3\xb6',
 'Tam\xc3\xa1si \xc3\x81ron \xc3\x81ltal\xc3\xa1nos Iskola Szentegyh\xc3\xa1za',
 'Tanitokepzo/Kezdivasarhely es Kornyezettudomany/Kolozsvar',
 'Tan\xc3\xa1rk\xc3\xa9pz\xc5\x91 F\xc5\x91iskoa Marosv\xc3\xa1s\xc3\xa1rhely,Bukaresti Egyetem,hungarol\xc3\xb3gia szak',
 'Tan\xc3\xa1rk\xc3\xa9pz\xc5\x91 F\xc5\x91iskola Marosv\xc3\xa1s\xc3\xa1rhely',
 'Tatrangi S\xc3\xa1ndor \xc3\x81ltal\xc3\xa1nos Iskola - Uzon',
 'Technikum Bar\xc3\xb3t',
 'Technikum-Baroti Szabo David',
 'Tehnician proiectant urbanism si amenajearea teritoriului',
 'Tehnologia Constructiilor de Masini Brasov',
 'Temesv\xc3\xa1ri M\xc5\xb1szaki Egyetem, \xc3\x89p\xc3\xadt\xc5\x91m\xc3\xa9rn\xc3\xb6ki Kar',
 'Temesv\xc3\xa1ri Nyugati Tudom\xc3\xa1nyegyetem, K\xc3\xa9pz\xc5\x91m\xc5\xb1v\xc3\xa9szeti Tansz\xc3\xa9k, Szobr\xc3\xa1szat szak',
 'Temesv\xc3\xa1ri Politechnika',
 'Temesv\xc3\xa1ri Tudom\xc3\xa1nyegyetem Informatika szak',
 'Teologia',
 'Teologie Gr.Cat. - Franceza',
 'Teologie/Drept',
 'Teol\xc3\xb3gia - Innsbruck (doklor\xc3\xa1tus)',
 'Tesi szak',
 'Testnevel\xc3\xa9si F\xc5\x91iskola Brass\xc3\xb3',
 'The Danish Business Academy Minerva',
 'The Gallifreyan Academy for Timelords',
 'The School of Questions',
 'Tivai Nagy Imre',
 'Tivai Nagy Imre szakk\xc3\xb6z\xc3\xa9piskola Cs\xc3\xadkszentm\xc3\xa1rton',
 'Top Nails Akad\xc3\xa9mia /Miller & Miller/',
 'Tot ce am vrut eu mereu',
 'Transsylvania Turistica',
 'Transylvania University Brasov, Faculty of Letters, American Studies',
 'Traveling',
 'Trefan Leonard',
 'Trojan Brand Condoms',
 'Turisztika technikum BSZD',
 'Turizmus Foldrajz',
 'Turoczi Mozes Altalanos Iskola',
 'U.S.A.M.V.- Tajepiteszet,Kolozsvar',
 'U.S.A.M.V.B.Timisoara - Imapa',
 'U.S.A.M.V.Cluj kerteszmernoki',
 'UAD',
 'UBB - BBTE - Applied Theology M.A',
 'UBB - tourism & applied modern languages',
 'UBB Cluj-Napoca \xc3\x81ltal\xc3\xa1nos asszisztens k\xc3\xa9pz\xc5\x91',
 'UBB Facultatea de Istorie si Filosofie, Arheologie',
 'UBB Faculty of Political, Administrative and Communication Sciences',
 'UBB Geografie, Masterat Planificare si Dezvoltare Regionala',
 'UBB extensiunea sighetul marmatie/geografia turismului',
 'UBB, Cultural Management',
 'UBB, Master Managementul Dezvoltarii Afacerilor',
 'UBB, Master in Stiinte Penale si Criminalistica',
 'UBB, Studii de securitate.',
 'UBB,Psychology and Human Resources',
 'UBB-Master , Turism si dezvoltare teritoriala',
 'UBB. Psychology and Science of Education',
 'UBB/K\xc3\xb6zigazgat\xc3\xa1s',
 'UCECOM Timisoara, Electromures Tg.Mures',
 'UGD (Universitas Gajah Duduk)',
 'UMF EFS',
 'UMF Fogorvosi kar',
 'UMFTGM BalneoFizioKineto-Therapy',
 "UNIVERSITA' DEGLI STUDI DI ECONOMIA E PASSEGGIO",
 'UNIVERSITATEA DE VEST VASILE GOLDIS MARGHITA',
 'UNN (Universitas Ngetan Ngulon)',
 'UPM, Ingineria si protectia mediului in industrie',
 'UPM, Managementul Resurselor Umane',
 'USH Csikszereda',
 'USP pszichol\xc3\xb3gia',
 'UVVG - Farmacie -Arad',
 'Udvarhelyi H\xc3\xadrport\xc3\xa1l',
 'Ugyanaz',
 'Unirea , a volt reform\xc3\xa1tus le\xc3\xa1nygimn\xc3\xa1zium, ami m\xc3\xa1r most rom\xc3\xa1n lett.',
 'Univ. D. Cantemir, Masterat- Psihologie Clinica',
 'Universidad de la Vida / University of Life',
 "Universita' Cattolica del Sacro Cuore, Milano; University of Memphis",
 'Universitate de sport - Alexandru Ion Cuza - sport egyetem',
 'Universitatea " George Baritiu" - Brasov: Economia comertului, turismuluisi serviciilor',
 'Universitatea "Transilvania" Brasov - Inginerie Mecanica - AR',
 'Universitatea "Transilvania"-Facultatea de muzica Brasov',
 'Universitatea BABE\xc5\x9e - BOLYAI testneveles es sport kar',
 'Universitatea BABE\xc5\x9e - BOLYAI, Socio-Cultural Communication, MSc',
 'Universitatea BABE\xc5\x9e - BOLYAI-(turisztika-kozgaz)',
 'Universitatea Babes- Bolyai Turism si dezvoltare teritoriala, Master',
 'Universitatea Babes-Bolyai, Facultatea de Geografie, Colegiul Gheorgheni',
 'Universitatea Babe\xc5\x9f-Bolyai, Facultatea de Business, Masterat Clasic, Administararea Afacerilor',
 'Universitatea Independenta Mihai Eminescu',
 'Universitatea Rap',
 'Universitatea Sextil Puscariu',
 'Universitatea d smecherie',
 'Universitatea de Arte "Vatra"',
 'Universitatea de Smecheri',
 'Universitatea de Vest - Muzica de camera/Master',
 'Universitatea de Vest Timi\xc5\x9foara/Facultatea de Arte Plastice/Textile-mod\xc4\x83',
 'Universitatea de arta si design din Sighisoara',
 'Universitatea din Brasov/ G\xc3\xb6d\xc3\xb6ll\xc5\x91i Agr\xc3\xa1rtudom\xc3\xa1nyi Egyetem',
 'Universitatea din Bucuresti | master Productie Multimedia si Audio-Video',
 'Universitatea \xe2\x80\x9eLucian Blaga\xe2\x80\x9d \xe2\x80\x93 Specializarea \xe2\x80\x9eAdministra\xc5\xa3ie Public\xc4\x83\xe2\x80\x9d',
 'University Of Oradea/Orthodox Theology',
 'University of Political, Administrative and Communication Sciences',
 'Universit\xc3\xa0 delle arti vampiriche',
 'Universit\xc3\xa0 di Brasov Facolt\xc3\xa0 di Industria del Legno',
 'Vama si finante+Universitatea Hyperion',
 'Vampire Academy',
 'Vegh Antal',
 'Veres P\xc3\xa9ter Mez\xc5\x91gazdas\xc3\xa1gi Szakk\xc3\xb6z\xc3\xa9piskola',
 'Vestige Academy - Make-Up',
 'Veszpr\xc3\xa9m,Szeged,P\xc3\xa9cs R\xc3\xb3mai Katolikus Teol\xc3\xb3gia',
 'V\xc3\xa1ry Emil Gimn\xc3\xa1zium Demecser',
 'Waldorf Pedag\xc3\xb3giai Int\xc3\xa9zet',
 'Z.K.U.(Zombie Killing University)',
 'Zene egyetem,Brasso',
 'Zenepedagogia',
 'Zenepedag\xc3\xb3gia - Transilvania, Brass\xc3\xb3',
 'Zimmethusen',
 'ZsKTF - AVKF Zs\xc3\xa1mb\xc3\xa9k',
 'Zsambeki Tanitokepzo,BBTE',
 '_',
 'a nagybet\xc5\xb1s \xc3\xa9let',
 'academia studiilor de inalta securitate paza si protectie',
 'agent vamal',
 'anyit ne tugyatok:p',
 'asistent de gestiune',
 'asistent medical generalist',
 'asistenta medicala generalist',
 'aszisztens kepzo csikszereda',
 'az sem tudom mi az',
 'az sincs',
 'az sincs :D',
 'az \xc3\xa9let EGYETEME',
 'babes bolyai egyetem gyergyoszentmikos',
 'babes bolyai foiskola szekelyudvarhely',
 'baroti szabo david vilany serelo',
 'being a full time badass',
 'brasso k\xc3\xb6zg\xc3\xa1z',
 'chimie 2',
 'colegiul pedagogic de institutori blaj',
 'controlul si expertiza produselor alimentare',
 'costantin Brancusi',
 'cristi_boy1996@yahoo.com',
 'csoban kepzo kiralyi foakademia',
 'doamne fereste dupa aia sa lucru in bar ca n-am post',
 'egeszegugyi posztlici udvarhely',
 'egeszsegugyi asszisztens',
 'egeszsegugyi technikum',
 'eg\xc3\xa9szsegugyi technikum',
 'eg\xc3\xa9szs\xc3\xa9g\xc5\xb1gyi technikum',
 'elev',
 'en ninguna jajaja pase por fuera de ella',
 'facultatea de stat acasa',
 'folyamatba',
 'gepgyarto idektepo iskolakozpont',
 'gy\xc3\xb3gyszer\xc3\xa9sz asszisztens',
 'gy\xc3\xb3gyszer\xc3\xa9sz aszisztens',
 'haltric',
 'hauard',
 'hed academy',
 'honan anyi b\xc5\x91ls\xc3\xa9gb\xc5\x91l?',
 'imets fulop jako',
 'inca nu am terminat niciuna',
 'industria lemnului',
 'ipari szakmunk\xc3\xa1sk\xc3\xa9pz\xc5\x91',
 'jiuston',
 'jog; szociologia-pszihologia; pedagogia; master-szervezetek managementje.',
 'kajony',
 'kereskedelem',
 'kereskedelmi liceum',
 'kipufogo egyetem',
 'kipufogo.net',
 'kozgazdasz',
 'la nici una',
 'la strada la miggliore scuola della vita',
 'labor\xc3\xa1ns',
 'law.ubbcluj',
 'lipsa text',
 'louis pasteur csikszereda',
 'maga az \xc3\x89LET',
 'majd k\xc3\xa9s\xc5\x91bb',
 'majd lesz',
 'majdha feln\xc5\x91v\xc3\xb6k',
 'me-ctif',
 'metropolisband.ro',
 'muegyetem Brasso',
 'm\xc3\xa1r nem j\xc3\xa1rok',
 'm\xc3\xa9g az sincs',
 'm\xc3\xa9g nem j\xc3\xa1rok',
 'm\xc3\xa9g nics',
 'm\xc3\xa9g nincs',
 'm\xc3\xa9g nincs :)',
 'm\xc3\xa9g nincs :D',
 'm\xc3\xa9g nincs de majd egyszer tal\xc3\xa1n lesz',
 'm\xc3\xa9g nincs de majd lesz',
 'm\xc3\xa9g nincs majd lesz',
 'm\xc3\xa9g nincs:D',
 'm\xc3\xa9g nincsen',
 'm\xc3\xa9g sehov\xc3\xa1 nem j\xc3\xa1rok',
 'm\xc3\xa9gnincsen de majd lesz',
 'nagyvarad zenepedagogia',
 'nasturi si capse',
 'nem j\xc3\xa1rtam',
 'nem j\xc3\xa1rtam egyetemre',
 'nesuna',
 'nici gand',
 'nincen',
 'nincs m\xc3\xa9g',
 'nincs nem is lesz',
 'nincs \xc3\xa9s nem is lesz XD',
 'nincs, de lehetne !. :D',
 'nincsen',
 'nnnnnnnnnnnnnnnn',
 'nu am ajuns inca',
 'nu am facultate',
 'nu am facut',
 'nu am facut facultate',
 'nu am inca',
 'nu sunt la scoala',
 'nu va intereseaza',
 'o.c. teslovanu',
 'ofiteri activi geniu',
 'oooo',
 'orban balazs elmeleti liceum',
 'pad koptato',
 'post liceal:asistent generalist',
 'pszichol\xc3\xb3gia MA',
 'reformatus asszisztenskepzo foiskola',
 'sa stau pe facebook',
 'sc profesionala auto',
 'sc.postlic.sanitara gh. marinescu',
 'sehova:)',
 'sehov\xc3\xa1',
 'semi k\xc3\xb6z\xc3\xb6d hozz\xc3\xa1',
 'sepsiszentgyoorgy',
 'signior di donna',
 'sma daRma 45',
 'socio-psiho',
 'steagu rosu',
 'stiinte si litere',
 'sunt inca elev',
 'szakliceum',
 'szekely karoly technikum',
 'tamasi aron egeszsegugyi posztliceum',
 'teksztil mernok',
 'tractorist',
 'traktor',
 'turoczi mozes',
 'udvarhely',
 'ugyanott',
 'usab-tm',
 'usmv',
 'uti iasi, fac de textile pielarie promotia 2004',
 'vieti',
 'vil\xc3\xa1gegyetem',
 'xxxxxxxx',
 'xxxxxxxxxxxx',
 '~',
 '\xc3\x81llateg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi technikus',
 '\xc3\x81llatorvosi Egyetem Temesv\xc3\xa1r',
 '\xc3\x81ltal\xc3\xa1nos asszisztens',
 '\xc3\x81ltal\xc3\xa1nos asszisztens ( orvos mell\xc3\xa9)',
 '\xc3\x89lelmiszerm\xc3\xa9rn\xc3\xb6ki',
 '\xc3\x89let iskol\xc3\xa1ja',
 '\xc3\x89p\xc3\xadt\xc5\x91m\xc3\xa9rn\xc3\xb6ki kar',
 '\xc3\x89rzelmek iskol\xc3\xa1ja',
 '\xc3\xa1jmeg h\xc3\xa9',
 '\xc3\xa9rets\xc3\xa9gi',
 '\xc3\xa9rettsegi',
 '\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6\xc3\xb6',
 '\xc5\x9ecoala De Ur\xc5\x9fii, Liceul Salbatic',
 '\xc5\x9fcoal\xc4\x83 sanitar\xc4\x83 topli\xc5\xa3a',
 '\xc8\x98coala Gimnazial\xc4\x83 "Kem\xc3\xa9ny J\xc3\xa1nos" \xc3\x81ltal\xc3\xa1nos Iskola',
 '\xe2\x80\x8eSibilism \xd8\xb3\xdb\x8c\xd8\xa8\xdb\x8c\xd9\x84\xdb\x8c\xd8\xb3\xd9\x85\xe2\x80\x8e',
 '\xe2\x80\x8e\xd8\xaa\xd8\xaf\xd8\xb1\xd9\x8a\xd8\xa8 \xd8\xa7\xd9\x84\xd8\xb5\xd9\x8a\xd8\xa7\xd8\xaf\xd9\x84\xd8\xa9 \xd8\xa3\xd9\x88\xd9\x86 \xd9\x84\xd8\xa7\xd9\x8a\xd9\x86\xe2\x80\x8e',
 '\xe2\x80\x8e\xd8\xac\xd8\xa7\xd9\x85\xd8\xb9\xd9\x87 \xd8\xb9\xd9\x8a\xd9\x86 \xd8\xb4\xd9\x85\xd8\xb3 \xd9\x85\xd8\xa7 \xd8\xa8\xd8\xb9\xd8\xaf \xd8\xb3\xd8\xb7\xd9\x88\xd8\xb9 \xd8\xa7\xd9\x84\xd8\xb4\xd9\x85\xd8\xb3"25 \xd9\x8a\xd9\x86\xd8\xa7\xd9\x8a\xd8\xb1"\xe2\x80\x8e',
 '\xe2\x80\x8e\xe2\x80\xa2\xe0\xae\x90.\xe2\x80\xa2\xd9\x84\xd8\xa7\xd8\xaa\xd8\xa8\xd9\x83\xd9\x8a\xdb\x81 \xd8\xb9\xd9\x84\xd9\x89\xdb\x81 \xd9\x85\xd9\x86\xdb\x81 \xd8\xa8\xd8\xa7\xd8\xb9\xd9\x83\xdb\x81 \xd8\xaf\xd8\xb9\xd9\x87\xdb\x81 \xd9\x8a\xd8\xa8\xd9\x83\xd9\x8a\xdb\x81 \xd8\xb9\xd9\x84\xd9\x89\xdb\x81 \xd8\xb6\xd9\x8a\xd8\xa7\xd8\xb9\xd9\x83\xdb\x81\xe2\x80\xa2\xe0\xae\x90.\xe2\x80\xa2"\xe2\x80\x8e'}

Studwhat


In [261]:
lists['studwhat']


Out[261]:
{'detoate',
 'Sportmenedzser',
 'Business Administration',
 'Management, Economics and Industrial Engineering',
 'K\xc3\xb6zigazgatas',
 'PENZUGY-KONYVELES',
 'Viticulture & Enology',
 'Architecture & Urban Planning',
 '\xc3\x9czleti kommunik\xc3\xa1ci\xc3\xb3',
 'Inginerie si Management in Constructii',
 'Master Publicitate',
 'Publicitate si Reclama',
 'Liceum',
 'Student Of The Year',
 'Ed.fizica / intrerupt',
 'Pshiologie-Pedagogie',
 'Constructii Civile Industriale si Agricole',
 'Elev',
 'Pszichol\xc3\xb3gia \xc3\xa9s Nevel\xc3\xa9studom\xc3\xa1nyi Kar',
 'Clinical chemistry',
 'zenetudom\xc3\xa1ny',
 'English Literature, Finnish',
 'Geografie Turism',
 'Double Bass',
 '\xc3\x81ltal\xc3\xa1nos',
 'Kemia-Fizika szak',
 'Arhitectura Peisagera',
 'Biztos\xc3\xadt\xc3\xa1si \xc3\xa9s p\xc3\xa9nz\xc3\xbcgyi matematika',
 'Logisztika',
 'M\xc5\xb1v\xc3\xa9szeti Kar',
 'Kereskedelem-Marketing',
 'Int\xc3\xa9zm\xc3\xa9nyi kommunik\xc3\xa1tor',
 'G\xc3\xa9p\xc3\xa9szm\xc3\xa9rn\xc3\xb6k',
 'Computer Aided Industrial Design and Manufacturing',
 'Canto Popular',
 'Interior Design',
 'Information Science',
 'vizu\xc3\xa1lis nevel\xc5\x91tan\xc3\xa1r',
 '\xc3\x81ltal\xc3\xa1nos eg\xc3\xa9szs\xc3\xa9g\xc5\xb1gyi asszisztens',
 'MPEAP',
 'Informatics',
 'Masterat',
 'N\xc3\xa9pi \xc3\xa9nek - N\xc3\xa9pzeneelm\xc3\xa9let',
 'Jurnalism and Physics',
 'Facultatea de Jurnalism si Stiintele Comunicarii',
 'General English Course',
 'Arta actorului',
 'Testneveles es Sport',
 'Villamosm\xc3\xa9rn\xc3\xb6k, Automatiz\xc3\xa1l\xc3\xa1s',
 'Pedagogie muzicala',
 'Professional Curtain making and Soft furnishing',
 'Dental Medicine and Surgery',
 'Sales & Marketing',
 'Facultatea de Inginerie Mecanica',
 't\xc3\xb6rt\xc3\xa9nelem-r\xc3\xa9g\xc3\xa9szet',
 'Studying',
 'Institute of Sociology',
 'Piano',
 'ospatar',
 'Pharmacist',
 'Matematik\xc3\xa1t',
 'k\xc3\xb6rnyezetm\xc3\xa9rn\xc3\xb6ki',
 'Mechanical Engineering',
 'HR menedzsment',
 'Dentistry',
 'Kozmetika',
 'Tortenelem-Leveltar szak',
 'Business and Management - Information Management',
 'Szoci\xc3\xa1lis munka - Reform\xc3\xa1tus vall\xc3\xa1stan\xc3\xa1r',
 'Matek Info Intenziv-angol',
 'Facultatea de Stiinte Juridice',
 'Management Financiar Contabil',
 'Painting',
 'Asistenti medicali generalisti',
 'Buddhist studies',
 'K\xc3\xb6rnyezettan',
 'TEHNICIAN MECANIC PENTRU INTRETINERE SI REPARATII',
 'm\xc3\xa9rlegk\xc3\xa9pes k\xc3\xb6nyvel\xc5\x91',
 'Finante, Banci si Contabilitate',
 'Gastronomy',
 'LMA',
 'BANK \xc3\x89S P\xc3\x89NZ\xc3\x9cGY',
 'Gy\xc3\xb3gytorn\xc3\xa1sz szak',
 'Facultatea de management',
 'Social Science',
 'Vil\xc3\xa1g- \xc3\xa9s \xc3\xb6sszehasonl\xc3\xadt\xc3\xb3 irodalom - angol nyelv \xc3\xa9s irodalom',
 'Mecanica auto',
 'Asociatia de Psihoterapie Pozitiva APP',
 'Educa\xc5\xa3ie Fizic\xc4\x83 \xc5\x9fi Sport',
 'K\xc3\xb6zigazgat\xc3\xa1studom\xc3\xa1nyi Kar',
 'Musical Pedagogy',
 'Diploma of Applied Photography and Photo-Imaging',
 'Engineering of Mechatronical Systems',
 'kommunik\xc3\xa1ci\xc3\xb3-PR',
 'Computerised Accounting for Business',
 'Communication Studies',
 'design textil',
 'Tecnico Superiore per la Programmazione della Produzione e della Logistica',
 '\xc3\x81ltal\xc3\xa1nos Orvostudom\xc3\xa1nyi Kar',
 'Ethnology',
 'Resurse Umane',
 'Clinical Psychology',
 'Stiinte Economice si Gestiunea Afacerilor',
 'Finante Banci',
 'MSc in Business Administration: Strategy & Organization',
 'Management Turistic si Comercial',
 'odonto-stomatologie',
 'gyogyszereszeti',
 'Japanese',
 'Szamitogepes Iranyitasi Rendszerek - Mesteri',
 'Sports on Facebook',
 'Textiles',
 'Sykepleie Bachelor',
 'Roman-Angol 3 ev',
 'PhD in Numerical Relativity',
 '\xc5\x9etiin\xc8\x9be sociale,intensiv englez\xc4\x83',
 'Stiinte economice juridice si administrative - Management',
 'Szak\xc3\xa1cs',
 'Master Managementul Afacerilor',
 'angol nyelv \xc3\xa9s irodalom',
 'Kozigazgatas',
 '\xc8\x98tiin\xc8\x9be Juridice',
 'Calculatoare \xc5\x9fi tehnologia informa\xc5\xa3iei',
 'Ingineria si Managementul Calitatii',
 'Hungarian studies',
 'Hungarian Romanian',
 'PEDAGOGIA \xc3\x8eNV\xc4\x82\xc5\xa2\xc4\x82M\xc3\x82NTULUI PRIMAR \xc5\x9eI PRE\xc5\x9eCOLAR',
 'Corporate Financial Management',
 'Masuratori terestre si cadastru',
 '\xc3\x89lelmiszer ipari technikus',
 'BBTE Pszichologia es Nevelestudomanyok',
 'Film Foto Media',
 'asistente medica',
 'mecanica agricola',
 '\xc3\x81pol\xc3\xb3',
 'Mechanics',
 'angol-rom\xc3\xa1n',
 'Masters in Human Resource Management',
 'Finan\xc8\x9be-B\xc4\x83nci',
 'R\xc3\xb3mai Katolikus Teol\xc3\xb3gia- Magyar Nyelv \xc3\xa9s Irodalom',
 'zen\xc3\xa9sz',
 'Kommunik\xc3\xa1ci\xc3\xb3 \xc3\xa9s K\xc3\xb6zkapcsolatok szak',
 'Pincer',
 'Contabilitate si Informatica de Gestiune',
 'Agriculture',
 'finante banci',
 'K\xc3\xb6nyvel\xc3\xa9s \xc3\xa9s gazd\xc3\xa1lkod\xc3\xa1si informatika',
 'Relatii Internationale Studii Europene',
 'Food Quality Management',
 'Matematika-Informatika Fakult\xc3\xa1s',
 'Managementul Firmei',
 'Angol',
 'Protokoll szaktan\xc3\xa1csad\xc3\xb3 \xc3\xa9s rendezv\xc3\xa9nyszervez\xc5\x91',
 'University',
 'Iluzionis',
 'Balneofiziokinetoterapie \xc5\x9fi recuperare',
 'kert\xc3\xa9sz',
 'Business Law',
 'SocialWork',
 'angol',
 'Computer Engineering',
 'Public Relations/Advertising',
 'kommunik\xc3\xa1ci\xc3\xb3 \xc3\xa9s m\xc3\xa9dia',
 'BTK',
 'Pszichol\xc3\xb3gia \xc3\xa9s Nevel\xc3\xa9studom\xc3\xa1ny kar',
 'German\xc4\x83 - Norvegian\xc4\x83',
 'Sz\xc3\xa1llodamanagement-Nemzetk\xc3\xb6zi Turisztika',
 'Veterinary Medicine',
 'Masterat Ingineria calculatoarelor',
 'Drept \xc5\x9fi administratie public\xc4\x83',
 'Master of Bussiness Administration M.B.A',
 'History of art',
 'industria lemnului',
 'Nutritie si Dietetica',
 'Inginerie Mecanica',
 '\xc3\xb3vodapedag\xc3\xb3gia',
 'Biologie-Chimie',
 'Asistent medical-generalist',
 'Intelligent Systems MSc',
 'Organic Chemistry',
 '2007 kapos kft kozmetika',
 'Politikatudomanyok, Termekmarketing',
 '\xc5\x9ftiin\xc5\xa3e juridice',
 'Ski Instructor',
 'IT Engineer',
 'constructii',
 'Politika-, K\xc3\xb6zigazgat\xc3\xa1s- \xc3\xa9s Kommunik\xc3\xa1ci\xc3\xb3tudom\xc3\xa1nyi Kar',
 'K\xc3\xbclkereskedelem AIG',
 'Wood Technology',
 'Tekstil',
 'Photography and Cinematography',
 'Kozgazdasz',
 'Machine Tools and Production Systems',
 'Textile Engineering',
 'Optometry',
 'Securitatea Rutiera, Transportul si Interactiunea cu Mediul',
 'Master "Stiinte Penale si Criminalistica"',
 '\xc3\x93v\xc3\xb3n\xc5\x91 \xc3\xa9s tan\xc3\xadt\xc3\xb3n\xc5\x91',
 'Database',
 'P\xc3\xa9nz\xc3\xbcgy \xc3\xa9s Bank',
 'International Business Management',
 'FACULTATEA DE INSTALATII',
 'Managementul Resurselor Umane',
 'magyar-orosz',
 'Computers',
 'Journalism',
 'Ingineria Instalatiilor',
 'General Business',
 'Auto Mechanic Technician',
 'Matem\xc3\xa1tica e Inform\xc3\xa1tica',
 'LACATUSERIE',
 'Informatica III',
 'Drept si Administratie Publica',
 'Special Education',
 'kemia-fizika',
 'focit',
 'Scoala gimnaziala',
 '\xc3\x89lelmiszerm\xc3\xa9rn\xc3\xb6k',
 'Turisztika szak',
 'Faculty of Pharmacy',
 'Computer Network Security',
 'Applied Electronics',
 'Topografie in Constructii',
 'Administrarea Afacerilor in Turism, Comert si Servicii',
 'Sociocultural Anthropology',
 'ESOL',
 'Management of people',
 'Profesyonel A\xc5\x9f\xc3\xa7\xc4\xb1l\xc4\xb1k',
 'Photography',
 'Marketing si Comunicare in Afaceri',
 'Translator',
 'Tanulm\xc3\xa1nyok: \xc3\x81ltal\xc3\xa1nos Orvos kar',
 'Facultatea de stiinte economice si administrarea afacerilor',
 '\xc3\x93vodai \xc3\xa9s elemi oktat\xc3\xa1s pedag\xc3\xb3gi\xc3\xa1ja',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi asszisztens',
 'Automobile Engineering',
 'ahahaha',
 '2003-2007',
 'Kommunik\xc3\xa1ci\xc3\xb3- k\xc3\xb6zkapcsolatok',
 'Distributed Systems',
 'Ecology',
 'biol\xc3\xb3gus',
 'Dreptul',
 'Gazdas\xc3\xa1gi Informatikus',
 'Informatic\xc4\x83 Economica',
 'Law & Order',
 'Economic IT & Informational Societies',
 'K\xc3\xb6zigazgat\xc3\xa1studom\xc3\xa1ny',
 'Matematica-Fizica',
 "Master's Degree",
 'Textile',
 'Electrotechncia',
 'Geogr\xc3\xa1fus MSc',
 'Elektroenergetika',
 'Biology',
 'Testnevel\xc3\xa9s \xc3\xa9s Sport',
 'Ingineria Mecanica - Autovehicule Rutiere',
 'J\xc3\xa9zus a tanit\xc3\xb3m',
 'Political Philosophy',
 'Art Conservation, specialised on Leather and Textile',
 'Constructii Inginerie Civila',
 'Info',
 'Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91',
 'Politikatudom\xc3\xa1nyok',
 'Masterat profesional european de administra\xc5\xa3ie public\xc4\x83',
 'P\xc3\xa9nz\xc3\xbcgy-Biztosit\xc3\xa1s',
 'K\xc3\xb6nyvel\xc3\xa9s \xc3\xa9s gazdas\xc3\xa1gi informatika',
 'Mehanika',
 'Tanit\xc3\xb3 \xc3\xa9s \xc3\xb3vodapedag\xc3\xb3gus szak',
 'Civil/Structural Engineering',
 'Filologie: Ungarisch-deutsch',
 'Landscape Architecture',
 'MSc Finance',
 'Forestry',
 'Hum\xc3\xa1n er\xc5\x91forr\xc3\xa1s menedzser',
 'Turisztika \xc3\xa9s vend\xc3\xa9gl\xc3\xa1t\xc3\xa1s',
 'MSc Real Estate',
 'Automatica si Informatica Aplicata',
 'Faculty of Medicine',
 'Literature',
 'Visual Art & Design Management',
 'Design/Fashion',
 'ASE - Economie si Comunicare Economica in Aafaceri',
 'K\xc3\xb6zgazdas\xc3\xa1gtan, Bank-p\xc3\xa9nz\xc3\xbcgy',
 'Music Performance - Trombone',
 '\xc3\xa1pol\xc3\xb3',
 'Voice/Music',
 'Physical Therapy',
 'Agricultura-agronomie',
 'Management si strategii de afaceri',
 'toate materile',
 'Angol- Roman',
 'Management and Business Administration',
 'Sports Education',
 'Chemical Engineering',
 'Educatie Fizica si Sport',
 'CEPA',
 'Facultatea de Litere,Istorie si Teologie',
 'Sculpture',
 'Pedag\xc3\xb3gia',
 'Filoz\xc3\xb3fia, A kommunik\xc3\xa1ci\xc3\xb3 filoz\xc3\xb3fi\xc3\xa1i',
 'Magyar nyelv \xc3\xa9s irodalom \xc3\xb6n\xc3\xa1ll\xc3\xb3 szak- R\xc3\xb3mai Katollikus Teol\xc3\xb3gia',
 'magyar-olasz szak',
 'PR & Corporate Communication',
 'Interpretarea Instr. Muzicala - Clarinet',
 'Turizmus \xc3\xa9s ter\xc3\xbcletfejleszt\xc3\xa9s',
 'Mechanical Engineer',
 'Facultatea de Medicina Dentara',
 'Taxi Service',
 'Ingineria Sistemelor Electroenergetice',
 'Csajozas',
 'Inginerie Medicala',
 'Fogtechnika',
 'PhD Doktori k\xc3\xa9pz\xc3\xa9s',
 'Phizical education and sports',
 '\xc3\x89p\xc3\xadt\xc5\x91ipar',
 'Computer technology',
 'FSEGA English Line',
 'operat\xc5\x91r',
 'Chinese',
 'Limbi si Literaturi Straine',
 'Rendezv\xc3\xa9nyszervez\xc3\xa9s',
 'szoci\xc3\xa1lpedag\xc3\xb3gia',
 'Banking and Finance',
 'Corporate Finance',
 'Informatician',
 'Gyermekv\xc3\xa9delem',
 'Drawing and Painting',
 'Manager',
 'DAS leben',
 'Psihologie si Stiintele ale Educatiei',
 'pszihol\xc3\xb3gia',
 'Mentalhigi\xc3\xa9n\xc3\xa9',
 'Computing',
 'Architecture and Urban Planning',
 'NLP Rezonanz',
 'Montanologie si Agroturism',
 'Rekre\xc3\xa1ci\xc3\xb3',
 'Auto Electrician',
 'Ethnography',
 'Vegy\xc3\xa9szm\xc3\xa9rn\xc3\xb6k',
 'Retail Design & Management',
 'Ingineria Infrastructurii Transporturilor',
 'Dramaturgy',
 'Film, Foto, M\xc3\xa9dia',
 'Dance & Choreography',
 'Electrotechnica',
 'Art',
 'Managementul Afacerilor Masterat',
 'PhD Social and Cultural Anthropology',
 'Navigatie',
 '\xc3\x96koturizmus \xc3\xa9s fenntarthat\xc3\xb3 fejleszt\xc3\xa9s',
 'Facultatea de Automatica si calculatoare',
 'Social Work',
 'Operator',
 'Vallalatgazdasag',
 'BWL & Wirtschaftspsychologie',
 'Szinh\xc3\xa1zm\xc5\xb1v\xc3\xa9szet',
 'Geological Engineering',
 'Unit\xc3\xa1rius Kar',
 'Hairstylist',
 'Turisztikai Menedzsment',
 'electomecanique',
 'Zenepedag\xc3\xb3gia',
 'kineto',
 'Facultatea de Silvicultura',
 'Electroenergetica',
 'Recording/Audio Engineering',
 'History of ceramic art',
 'Tanfel\xc3\xbcgyel\xc5\x91, min\xc5\x91s\xc3\xadt\xc5\x91 pedag\xc3\xb3gus',
 'Facultatea ITMI',
 'Environmental Science',
 'k\xc3\xa9mia-fizika',
 'Mathematics/Physics',
 'K\xc3\xb6zgazd\xc3\xa1sz.Gazdas\xc3\xa1gi Informatikus',
 'BBTE-Pszichol\xc3\xb3gia \xc3\xa9s Nevel\xc3\xa9studom\xc3\xa1nyok kar',
 'K\xc3\xb6zleked\xc3\xa9sm\xc3\xa9rn\xc3\xb6ki Kar',
 'MPG',
 'Konyveles es gazdasagi informatika',
 'European Studies',
 'Tan\xc3\xadt\xc3\xb3 \xc3\xa9s \xc3\xbavodapedag\xc3\xb3gus szak',
 'Informatikus m\xc3\xa9rn\xc3\xb6k/ m\xc5\xb1szaki manager',
 'balneofiziokinetoterapie si recuperare',
 'angol nyelvtan\xc3\xa1r',
 'Masterat: Ecoturism si dezvoltare durabila',
 'Balneofizioterapie si recuperare medicala',
 'Informatika szak',
 'Music Production and Sound Engineering',
 'Fizika',
 'Matematikai didaktika',
 'Teologie Ortodoxa Pastorala',
 'Mesterk\xc3\xa9pz\xc3\xa9s',
 'Stiinte Ingineresti Aplicate in Medicina',
 'Sz\xc3\xadnm\xc5\xb1v\xc3\xa9szeti',
 'Bio-Chimie',
 'er\xc3\xb6szak',
 'Information Security Management',
 'PIPP',
 'PSIHOLOGIE APLICATA IN DOMENIUL SECURITATII NATIONALE',
 'Specializare:Fotbal',
 'V\xc3\xa1llalatgazdas\xc3\xa1gtan',
 'Gy\xc3\xb3gyszer\xc3\xa9sz asszisztens',
 '\xc3\x81cs',
 'Structural Engineering',
 'Theology',
 'Szekelyudvarhely',
 'Pharmacy',
 'Kinetoter\xc3\xa1pia - Gy\xc3\xb3gytorna',
 'Choreography',
 'Economy,Commerce,Tourism and Business Management',
 'Oktat\xc3\xb3i Matematika',
 'Engineering',
 'Geography/Tourism',
 'Master of Business Administration',
 'f\xc3\xb6ldrajz-t\xc3\xa9rk\xc3\xa9p\xc3\xa9szet',
 'Facultatea de Inginerie',
 'Contabilitatea si auditul afacerilor',
 'Facultatea de Silvicultura si Exploatari Forestiere',
 'Military Science',
 'Fenntarthato Biotechnologiak',
 'Musicology',
 'ospatar bucatar',
 'K\xc3\xb6zgazdas\xc3\xa1g kar',
 'Aprily Lajos ALtalanos iskola',
 'Management in Turism',
 'Generalist',
 'G\xc3\xa9ptervez\xc5\x91',
 'Sportedz\xc5\x91',
 'Scoala',
 'Altalanos asszisztens',
 'sdaf',
 'Autovillanyszerelo Technikus',
 'German/English',
 'Textile Design',
 'Kinetoter\xc3\xa1pia',
 'management mesteri',
 'Vizi Maria Melinda',
 'BA Journalism',
 'Photography & Film',
 'Nemzetk\xc3\xb6zi Tanulm\xc3\xa1nyok',
 'Business studies',
 'Constructii Civile',
 'Pszichol\xc3\xb3gia',
 'Logisztikai \xc3\xbcgyint\xc3\xa9z\xc5\x91',
 'IT, Communication and New Media',
 'Advanced Process Chemical Engineering',
 'Tourism',
 'Faculty of Physics, Faculty of Theatre, Film and Television',
 'Fenntarthat\xc3\xb3 fejl\xc5\x91d\xc3\xa9s \xc3\xa9s K\xc3\xb6rnyezeti Menedzsment - Angol',
 'K\xc3\xbcl-\xc3\xa9s biztons\xc3\xa1gpolitika',
 'Cinematography, Photography, Media',
 'Limba si Literatura Romana-Franceza',
 'M.A in Fine Arts',
 'Registered Nurse',
 'Graphology',
 '\xc3\x89lelmiszerm\xc3\xa9rn\xc3\xb6ki',
 'Advanced procedures in Environmental Engineering',
 'Economia Turismului Intern si International',
 'halgazd\xc3\xa1lkod\xc3\xa1s',
 'Accounting and IT Management',
 'Media management',
 'Relaciones Publicas y Comunicaciones',
 'Organizational communication',
 'Ma uit pe geam',
 'Horticulture',
 'Inginerie Calculatoare',
 'Inginerie Geodezica',
 'Szobr\xc3\xa1szat',
 'TCM-masini unelte',
 'Active Methods',
 'balneofiziokinetoterapia',
 'management -folyamatban',
 'CORSO DISEGNIO TECNOLOGIA ANTIFORTUNISTICA(1 anno)',
 'Penzugy es Bank',
 'Fejleszt\xc5\x91ped.szak',
 'Automotive',
 'Kinetotherapy',
 'NU AM FACUT',
 'Autovehicule rutiere (AR)',
 'Esk\xc3\xbcv\xc5\x91szervez\xc3\xa9s',
 'informatika-matematika',
 'Robotics',
 'Psihologie, Zi',
 'scoala vietii',
 'English',
 'Financial Accountant',
 'Turisztika&Menedzsment',
 'Psihologie si Psihopedagogie Speciala',
 'Fogorvostudom\xc3\xa1nyi Kar',
 'Public Administration',
 'Fine Arts',
 'Economia comertului,turismului si servicilor',
 'pszichopedag\xc3\xb3gia',
 'Kozelelmezes',
 '\xc3\xa9nek-zene tan\xc3\xa1r',
 'Computer Science & Engineering',
 'Languages',
 '\xc3\x81ltal\xc3\xa1nos Orvosi Kar',
 'Master Banque Finance',
 'Farming',
 'Accountancy',
 'BA in Psychology',
 'Automatizalas',
 'Tancos Probavezet\xc3\xb6!!!',
 'Managementul Institutiilor Europene',
 'Psiholog',
 'Master in visual art',
 'Nu am studiat',
 'Fimes, telev\xc3\xadzi\xc3\xb3s rendez\xc3\xb4-operat\xc3\xb4r',
 'Ingineria sistemelor biotehnice si ecologice',
 'Filoz\xc3\xb3fia',
 'Public Relations',
 'n\xc3\xa9met-kommunik\xc3\xa1ci\xc3\xb3',
 '\xc3\x89M',
 'Missions & Evangelism',
 'Psihologie si Stiinte ale Educatiei',
 'finante-contabilitate',
 'V\xc3\xa1llalkoz\xc3\xa1s menedzsment',
 'Facultatea Istorie \xc8\x99i Filosofie',
 'German',
 'Elelmiszeripari mernoki',
 'Bolti elad\xc3\xb3',
 'Instalatii',
 'Faipari',
 'Environmental Protection',
 'Drept juridic',
 'Jurisprudence',
 'Media',
 '..........................',
 '\xc3\xa9nek-zene szak',
 'Medical Engineering',
 'Finances',
 'Stiinte administrative',
 'Facultatea de Matematica - Informatica',
 'lelkes amat\xc5\x91r',
 'Sz\xc3\xadn\xc3\xa9sz szak',
 'Engineering Geology',
 'nevel\xc3\xa9studom\xc3\xa1ny',
 'Instalatii pt Constructii',
 'Masini si instalatii de agricultura si industrie alimentara',
 'Ilyes Eva',
 'Kereskedelem',
 'Limbi Moderne Aplicate',
 'V\xc3\xa1llalati p\xc3\xa9nz\xc3\xbcgyi menedzsment',
 'Museology',
 'Environmental engineering',
 'Arhitectura si Urbanism',
 'Limbi Moderne Aplicate Engleza-Franceza',
 'Commercial Law',
 'Zene pedagogia',
 'Ice Hockey',
 'Liceul teoretic',
 'Biochemistry',
 'Horticulture Engineering',
 'Gazd\xc3\xa1lkod\xc3\xa1studom\xc3\xa1nyi Kar',
 'P\xc3\xa9nz\xc3\xbcgy-Sz\xc3\xa1mvitel',
 '\xc8\x98tiin\xc8\x9be Politice',
 'fitness si estetica corporala',
 'Muzica',
 'Vezet\xc3\xa9s-szervez\xc3\xa9s',
 'Regie',
 'Tan\xc3\xa1csad\xc3\xa1s',
 'Arte plastice',
 'szociol\xc3\xb3gia-vid\xc3\xa9kfejleszt\xc3\xa9s',
 'istorie stiinte sociale',
 'Archaeology and Classical Studies',
 '\xc3\x89lelmiszeripari m\xc3\xa9rn\xc3\xb6k szak',
 'Nagy\xc3\xa1llatklinika',
 'Cultural Studies',
 '\xc3\x93voda- \xc3\xa9s Iskolapedag\xc3\xb3gia',
 'Tavkozles',
 'Academic English',
 'Facultatea de Psihologie-Pedagogie',
 'Masterat Managementul dezvolt\xc4\x83rii afacerilor',
 'Inginerie Tehnologica',
 'Nincs',
 '\xc3\xa1llateg\xc3\xa9szs\xc3\xa9g\xc3\xbcgy',
 'Business Management',
 'Relatii Internationale si Studii Europene',
 'Facultatea de Educatie Fizica si Sport Kinetoterapie',
 'Facultatea de mecanica',
 'asistent medical de farmacie',
 'Limbi clasice',
 'Kornyezetmernok',
 'asztalos',
 'English/French',
 'Geodezie(masuratori terestre si cadastru)',
 'Informatica Economica',
 'Liceul Liviu Rebreanu',
 'metematika',
 'Controlul Avansat Al Proceselor',
 'Alimentatie Publica si Turism',
 'Administratie publica',
 'Jog',
 'Administrarea Afacerilor',
 'Nemzetk\xc3\xb6zi kapcsolatok',
 'Music Performance - Trumpet',
 'K\xc3\x96ZGAZD\xc3\x81SZ',
 'UTC-N',
 'szinesz - dramaturg',
 'Foci',
 'Munkafolyamat Vezeto',
 'ETSZK',
 'Marketing & E-Business',
 '\xc3\xa1llatorvosi',
 '\xc3\xa1llatorvos',
 'Money',
 'Vid\xc3\xa9kfejleszt\xc3\xa9si Agr\xc3\xa1rm\xc3\xa9rn\xc3\xb6ki',
 'Postuniversitara Drept penal - criminalistica',
 'Mecanica Automotriz',
 'Asistenta Sociala',
 'Tourism and Territorial Developement',
 'K\xc3\xb6nyvel\xc5\x91s\xc3\xa9g',
 'Humanities',
 'Mathematical Physics',
 'Mate-Info',
 'Medicine',
 'Geography of turism BSc',
 'Dezvoltare durabila in Protectia Mediului',
 'Jog\xc3\xa1sz',
 'Afaceri Internationale',
 'Ing. Topografica',
 'MOGYE- AOK',
 'Hungarologia',
 'Limba si literatura romana-Limba Franceza',
 'Specializarea Drept',
 'Rom\xc3\xa1n nyelv \xc3\xa9s Irodalom-Angol nyelv \xc3\xa9s Irodalom',
 'jog\xc3\xa1sz-szak',
 'HVAC',
 'Matematica-Informatica',
 'International Law',
 'Min\xc5\x91s\xc3\xa9gir\xc3\xa1ny\xc3\xadt\xc3\xa1si szakir\xc3\xa1ny',
 'History',
 'Art History',
 'Andrag\xc3\xb3gia',
 'Asisten Medical Generalist',
 'Labour law',
 'Psycho Pedagogical Module, Levels 1 & 2',
 'Informatikai Kar',
 'Rekamil Tervezo',
 'Magyar-n\xc3\xa9met fordit\xc3\xb3',
 'Magyar-n\xc3\xa9prajz szak',
 'Gyogyszereszeti Tudomanyok',
 'Turisztikai,kereskedelmi es szolgaltatasok gazdasagtana',
 'Sisteme de asistare a deciziilor economice',
 'M\xc3\xa9dia',
 'Stiinte Economice - E.C.T.S.',
 'Hidro-Meteorologia',
 'Szak\xc3\xa1cs-cukr\xc3\xa1sz-vend\xc3\xa9glat\xc3\xb3 menedzser',
 'Gesundheit und Socialwesen',
 'Szocialis teologia',
 'Managment',
 'Entrepreneurship and Business Management',
 'BBTE - Pszichol\xc3\xb3gia \xc3\xa9s Nevel\xc3\xa9studom\xc3\xa1nyok Kar',
 'Drept',
 'Metrology and Quality Assurance',
 'Vir\xc3\xa1gk\xc3\xb6t\xc3\xa9szet',
 'African Studies',
 'Management Financiar Public \xc5\x9fi Privat',
 'Kert',
 'Electrical Systems',
 'Igiena mentala',
 'Teologie Pastorala',
 'Kereskedelmi szakmenedzser',
 'gazdagsagtan es turizmus',
 'Pszichologia es Nevelestudomanyok',
 'Studii Europene si Relatii Internationale',
 'BScN Nursing',
 'Business Administrat',
 'Accounting',
 'International Business',
 '\xc3\x81ltal\xc3\xa1nos aszisztens',
 'Public Health',
 'Human Resources',
 'M\xc5\xb1szaki informatika',
 'Amenajare si dezvoltare in turism',
 'Entrepreneurship and Business Administration',
 'K\xc3\xb6rnyezettudomany',
 'Testnevel\xc3\xa9si \xc3\xa9s Sporttudom\xc3\xa1nyi Kar',
 'T\xc3\xbal\xc3\xa9l\xc3\xa9s',
 'Interpretare muzicala - Orga',
 'European Studies & International Relations Cluj-Napoca',
 'K\xc3\xb6zoktat\xc3\xa1svezet\xc5\x91',
 'Electrical Telecommunication Engineering',
 'Uzleti Kommunikacio',
 'Leadership',
 'Facultatea de Inginerie Mecania',
 'Faculty of Economics, Law and Administrative Studies',
 'informatica economice, ISE',
 'Translation',
 'Phylosophy',
 'Calculatoare \xc8\x99i Tehnologia Informa\xc8\x9biei',
 'Administrarea afacerilor in comert, turism si servicii',
 'Heilerziehungspflegerin',
 'Jogi kar',
 'Master - Gestiunea si Evaluarea Proiectelor, Contabilitate - FSEGA',
 'Piano flaut canto',
 'Filoz\xc3\xb3fia-t\xc3\xb6rt\xc3\xa9nelem',
 'tan\xc3\xa1r',
 'Film editing',
 'Aut\xc3\xb3szerel\xc5\x91',
 'Archaeology & Classical Studies MA',
 '\xc3\x93vodapedag\xc3\xb3gus-Tan\xc3\xadt\xc3\xb3k\xc3\xa9pz\xc5\x91 Szak',
 'Psychology MA',
 'rom\xc3\xa1n-magyar/ romana-maghiara',
 'Theatre and Professional Practice',
 'Education',
 'Inginerie Civil\xc4\x83, Inginerie Geodezic\xc4\x83, Inginerie Eonomic\xc4\x83 \xc3\xaen Construc\xc8\x9bii',
 'Materials Science',
 'Logistics Management',
 'stiinte economice, juridice si administrative',
 'PhD in Law',
 'istorie-engleza',
 '\xc3\x93voda \xc3\xa9s elemi oktat\xc3\xa1s pedag\xc3\xb3gi\xc3\xa1ja',
 'Ingineria Sistemelor',
 'Auto maintenance',
 'pedag\xc3\xb3gia,nevel\xc3\xa9si tan\xc3\xa1csad\xc3\xa1s-pszihol\xc3\xb3gia',
 'Facultatea de Educatie fizica si Sport',
 'Master Sisteme de Asistare a Deciziilor Economice',
 'Dizajn',
 'hum\xc3\xa1n',
 'Gy\xc3\xb3gyszert\xc3\xa1ri asszisztens',
 'Naval Arhitecture, Advance Ship Design',
 'Banking & Finance',
 'Facultate de psihologie si stiinte ale educatiei',
 'andrag\xc3\xb3gia-m\xc5\xb1vel\xc5\x91d\xc3\xa9sszervez\xc5\x91',
 'Agrar es elemiszeripari gazdasag szak',
 'Acounting',
 'Auto szerelo',
 'f\xc3\xb6ldrajz-t\xc3\xb6rt\xc3\xa9nelem',
 'General Medicine',
 'International Government',
 'English/History',
 'Sz\xc3\xadnm\xc5\xb1v\xc3\xa9szet',
 'Genetics',
 'British First World War Studies',
 'Maistru Mecanic Auto',
 'Technician in Constructii',
 'Theoretical Physics',
 'Tehnician in turism',
 '\xc3\x9ajs\xc3\xa1g\xc3\xadr\xc3\xb3 I.',
 'Inginerie \xc5\x9fi management \xc3\xaen alimenta\xc5\xa3ie public\xc4\x83 si agroturism',
 'Psihoterapia si psihodiagnoza experientiala',
 'Constructii Civilie, Industriale si Agricole',
 'tan\xc3\xa1ri',
 'A.C.',
 'Geology',
 'Facultatea de Psihologie si Stiinte ale Educatiei',
 'Dentist',
 'gyogyszereszaszisztens',
 'controlul si expertiza produselor alimentare',
 'PhD in Computer Science',
 'Accredited Jewelry Professional',
 'Diak\xc3\xb3nia',
 'Angol-Jap\xc3\xa1n',
 'elektronika,szamitogep kezelo programozo',
 'Composition f\xc3\xbcr Th\xc3\xa9\xc3\xa2tre Musical - Georges Aperghis',
 'Fogorvosi',
 'Tervez\xc5\x91grafika',
 'Fodraszat',
 'Facultatea de \xc8\x98tiin\xc8\x9ba \xc8\x98i Tehnologia Alimentelor',
 'Foldrajz',
 'Energetics',
 'Pincer-szakacs szakliceum',
 'Basketball',
 'konyveloseg',
 '\xc3\xa1ltal\xc3\xa1nos orvos',
 'Inginerie Economica Industriala',
 'tan\xc3\xadt\xc3\xb3-\xc3\xb3vodapedag\xc3\xb3gus',
 'management hotelier',
 'Studii de Securitate',
 'LACATUS MASINI SI UTILAJE',
 'testnevel\xc5\x91-edz\xc5\x91',
 'magyar',
 'Political Sience',
 'Facultatea de Fizica',
 'Butoripari Teknikum',
 'Stiinte Economice- Management',
 'Kerteszmernokit',
 'Automotive engineering',
 'MBA Finance',
 'GY\xc3\x93GY\xc3\x81SZATI SEG\xc3\x89DESZK\xc3\x96Z FORGALMAZ\xc3\x93 K\xc3\x89PZ\xc3\x89S',
 'Marketing Research',
 'Sport si performanta motrica',
 "Master's Degree in Business Management",
 'Administratie publica europeana',
 'Physics',
 'Informatic\xc4\x83 Economic\xc4\x83',
 'Business Managenent',
 'Sexology',
 'Politikai kommunik\xc3\xa1ci\xc3\xb3 \xc3\xa9s marketing',
 'K\xc3\xb6zgazdas\xc3\xa1gtudom\xc3\xa1nyi Kar',
 'Designer vestimentar',
 'Comunicare & PR',
 'ASISTENT MEDICAL/FARMACIST',
 'Balneo-fizio-kinetoter\xc3\xa1pia',
 'Filologie rom\xc3\xa2na-latin\xc4\x83',
 'Jazz Guitar',
 'Mindent',
 'Medicina.',
 'Sibiu / Hermannstadt - Romania',
 'Mathematics and Computer Science',
 'M\xc5\xb1\xc3\xa9pit\xc3\xa9szet \xc3\xa9s urbanisztika',
 'Moda - Design Vestimentar',
 'Facultatea de Textile',
 'Ingineria Sistemelor Automate',
 'AEMP',
 'Managementul Ecosistemelor Forestiere',
 'Inginerie Economica si Management',
 'Theatre studies',
 'magyar nyelv \xc3\xa9s irodalom',
 'Hungarian- and Finnish Language and Literature',
 'Agr\xc3\xa1r \xc3\xa9s \xc3\x89lelmiszeripari Gazdas\xc3\xa1gtan',
 'Masters Degree in Hotel Management',
 'Informatics and Economics',
 'American Studies & Hungarian Language and Literature (MA)',
 'Tranzactii Internationale',
 'Masterat Guvernare si Societate',
 'Kereskedelmi szakir\xc3\xa1ny',
 'Automatic Systems Engineering',
 'Artillery',
 'Economic Informatics',
 'N\xc3\xa9met nyelv \xc3\xa9s irodalom',
 '\xc3\x89p\xc3\xbcletg\xc3\xa9p\xc3\xa9sz',
 'nemet',
 'Hardware and Network',
 'Actorie',
 'Szociol\xc3\xb3giai alapk\xc3\xa9pz\xc3\xa9s',
 'Information Engineering',
 '\xc3\xa1llatt teny\xc3\xa9szt\xc3\xa9s',
 'Turizmus elelmiszer ipar',
 'N\xc3\xb6v\xc3\xa9nyorvos',
 'International Relations and European Studies',
 'Filol\xc3\xb3gia - sajt\xc3\xb3t\xc3\xb6rt\xc3\xa9net',
 'Master Profesional European in Administratie Publica',
 'Death Metal',
 'Biologie chimie',
 'Multimedia & Web Design',
 'Planning',
 'Psichology',
 'Turizmusf\xc3\xb6ldrajz szak',
 'turizmus-vend\xc3\xa9gl\xc3\xa1t\xc3\xa1s',
 'Contabilitate si informatica de gestiune',
 'Eur\xc3\xb3pai tanulm\xc3\xa1nyok',
 'Mathematics & Informatics',
 'Bank & Finance',
 'K\xc3\xb6zgazdas\xc3\xa1gi',
 'lakatos',
 'educatie fizica si management in sport',
 'Tan\xc3\xadt\xc3\xb3',
 'Molekul\xc3\xa1ris sejt- \xc3\xa9s neurobiol\xc3\xb3gia',
 'Electronic\xc4\x83, Telecomunica\xc5\xa3ii \xc5\x9fi Tehnologia Informa\xc5\xa3iei',
 'Trade',
 'Finante-banci',
 'Term\xc3\xa9szetv\xc3\xa9delmi m\xc3\xa9rn\xc3\xb6k',
 'T\xc3\xa1rsadalmi tanulm\xc3\xa1nyok',
 'Kepzomuveszet',
 'Development Studies and International Relations',
 'Nature Conservation Engineering',
 'Marketing Menedzsment Mesterk\xc3\xa9pz\xc5\x91',
 'SAAPIC',
 'Silvicutura',
 'gy\xc3\xb3gyszer\xc3\xa9sz aszisztens',
 'RISE',
 'Dental Nurse',
 'pinc\xc3\xa9r',
 'Orgel',
 'Kameraman',
 'Inginerie Alimentara',
 'IBM Master Program',
 'Graphic Design',
 'Allatorvosi',
 '\xc3\x93vod\xc3\xa1s \xc3\xa9s kisiskol\xc3\xa1skor pedag\xc3\xb3gi\xc3\xa1ja',
 'kozgazadasag kar',
 'Cooking & Baking',
 'Matek-Info',
 'GYTK',
 'Az elett leckelyet',
 'Nevel\xc3\xa9studom\xc3\xa1ny kar',
 'Sisteme distribuite in internet',
 'Contabilitate \xc5\x9fi informatic\xc4\x83 de gestiune',
 'Started my own business',
 'Eectromecanica',
 'Electronica TAV Multimedia',
 'midwife',
 'Mathematics',
 'M\xc5\xb1vel\xc5\x91d\xc3\xa9sszervez\xc3\xa9s Mesteri',
 'Erd\xc5\x91m\xc3\xa9rn\xc3\xb6ki',
 'Pastoral\xc4\x83',
 'Romana-Engleza',
 'K\xc3\xa9mia Fizika szak',
 'Law',
 'Aerospace Engineering',
 'Profil Pedagogic',
 'Helping Others',
 'N\xc3\xa9prajz',
 'Human Biology',
 'Kozgazdasag',
 'alkalmazott k\xc3\xb6zgazdas\xc3\xa1gtan',
 'Turisztika- Angol Intenz\xc3\xadv-',
 'gepesztechnikum',
 'Acting/Directing',
 'magyar-angol',
 'BME',
 'M\xc5\xb1v\xc3\xa9szetter\xc3\xa1pia',
 'Limba si literatura romana',
 'Facultatea de Stiinte Economice si Gestiunea Afacerilor',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi Szakpolitik\xc3\xa1k \xc3\xa9s Szolg\xc3\xa1ltat\xc3\xa1sok',
 'Agronomy',
 'Gyogyszereszet',
 'Electronics and Communication engineering',
 'ceramic',
 'Tehnica dentara',
 'R\xc3\xa9g\xc3\xa9szet',
 'Public Ad',
 'Rela\xc8\x9bii Interna\xc8\x9bionale \xc8\x99i Studii Europene',
 'Facultatea de Litere',
 'Educational Management',
 'Institutii si structuri de drept constitutional romanesc si european',
 'csecsem\xc5\x91 \xc3\xa9s kisgyermeknevel\xc5\x91',
 'Master Degree ERSM',
 'Seminarul Teologic Ortodox, Agapia, jud. Neamt',
 'Facultatea de Drept',
 'Nursing',
 'lovas szakedz\xc5\x91',
 'Mechanika',
 'Travel and Tourism/Business',
 'Facultatea de Stiinte si Litere - Limbi Moderne Aplicate',
 'Wine Technology',
 'Operations Research',
 'Betriebswirtschaft',
 'szomatopedag\xc3\xb3gia',
 'Asistent Generalist',
 'General Medicine.',
 'House desiner',
 'Economie si Afaceri Internationale',
 'Foto-Video',
 'Romina',
 'Inginerie geologic\xc4\x83 \xc8\x99i geofizic\xc4\x83',
 'International Development',
 'Omniverzum Szabadegyetem',
 'Facultatea de Studii Europene UBB',
 'Barista',
 'Quality Management',
 'industria alimentara',
 'Cello, Musicology',
 'Automatika \xc3\xa9s alkalmazott informatika szak',
 'Turistikai technikus',
 'porn star',
 'Military Leadership',
 'Kereskedelem \xc3\xa9s Marketing',
 'Aesthetics',
 'Computer Proggramming',
 'Communication',
 'Internationales Management',
 'Kert\xc3\xa9szm\xc3\xa9rn\xc3\xb6k Bsc',
 'Allategeszsegugyi aszisztens',
 '\xe2\x80\x8e\xd9\x83\xd9\x84\xd9\x8a\xd9\x87 \xd8\xa7\xd9\x84\xd9\x87\xd9\x86\xd8\xaf\xd8\xb3\xd9\x87 \xd8\xb5\xd8\xa8\xd8\xb1\xd8\xa7\xd8\xaa\xd9\x87\xe2\x80\x8e',
 'pedagogia invatamantului primar si prescolar',
 'Muszaki Rajz-Tervezo',
 'Sz\xc3\xa1m\xc3\xadt\xc3\xa1stechnika',
 'Semmit',
 'Political Science',
 'Entrepreneurship',
 'tutto',
 'Sokmindent',
 'Philosophy PhD',
 'Matematika,Informatika,Mezogazdasag',
 'FERFIFODRASZ',
 'Internationale Beziehungen und Europastudien',
 'Stiinta si Ingineria Materialelor',
 'Neuroscience',
 'Banking',
 'Facultatea de Drept Simion B\xc4\x83rnu\xc8\x9biu',
 'Law, Economics and Governance',
 'Szamitas Technika',
 'International Relation and European Studies',
 'Ingineria Autovehiculelor Rutiere',
 'Natural Science',
 'Comunicare si Relatii Publice',
 'English Literature and Language',
 'Electronica, Telecomunicatii si Tehnologia Informatiei',
 '\xc2\xb7 Interpretare muzicala - Pian \xc2\xb7 Brasov, Romania',
 'CAD',
 'Topografia Cartografia',
 'moder\xc3\xa1tor',
 'Telep\xc3\xbcl\xc3\xa9sfejleszt\xc3\xa9sben alkalmazott szociol\xc3\xb3gia',
 'CFDP',
 'Fashion Designing',
 'Stilist',
 'Ingenieria Agroindustrial e Industrias Alimentarias',
 'Management Turistic si Hotelier',
 'Eszterg\xc3\xa1lyos',
 'TransAtlantic Studies',
 'Geografia Turismului',
 'gazdasagi informatika',
 'Stiinte Economice',
 'Public Administrtion',
 'Psihopedagogie',
 'Asistent medical generalist',
 ...}

Workwhat


In [264]:
lists['workwhat']


Out[264]:
{'f\xc5\x91munkat\xc3\xa1rs',
 'Former Programmer',
 'Business Administration',
 'profesor inavatamantul prescolar',
 'Consilier V\xc3\xa2nz\xc4\x83ri',
 'Seller',
 'Sz\xc3\xadn\xc3\xa9sz / actor',
 'Former Fitnes Instructor',
 'M\xc5\xb1sorvezet\xc5\x91-szerkeszt\xc5\x91',
 'Lodge',
 'Consilier vanzari',
 'Sz\xc3\xadn\xc3\xa9sz, Rendez\xc5\x91',
 'Bezirksvertreter - Ter\xc3\xbcleti k\xc3\xa9pvisel\xc5\x91 - Rom\xc3\xa1nia',
 'Former dipendente',
 'Former Sz\xc3\xadn\xc3\xa9sz',
 'R\xc3\xa9szlegvezet\xc5\x91',
 'Sales Executive',
 'Coafeza- Frizerita',
 'Applikationsmanager',
 'Hetfo -pentek8-13:40',
 'gepkezelo',
 'Medic rezident',
 'Director, Cultural Manager',
 'magyar-n\xc3\xa9met szakos tan\xc3\xa1r',
 'RTV',
 'Promo Supervsor',
 'fogorvos',
 'News-REPORTER',
 'Receptionist Spa',
 'PRODUCER/RAP ARTIST',
 'Korm\xc3\xa1nyz\xc3\xb3',
 'inginer casnic ;)',
 'Former sef centru',
 'f\xc5\x91\xc3\xa1ll\xc3\xa1s\xc3\xba anyuka',
 '\xc3\xa9letm\xc5\xb1v\xc3\xa9sz',
 'Former min\xc5\x91s\xc3\xa9gellen\xc5\x91r',
 'Sound & Light',
 'Koptatom a gumikat es azaltal az utakat....hogy ne a lelkem kopjon :)',
 'ASZISZTENSN\xc5\x90',
 'optimista',
 'Elev',
 'Fiziokinetoterapeut',
 'Senior Journalist',
 'Medical Office Assistant',
 'Luptator',
 'Former Systems Analysis and Database Design',
 'k\xc3\xb6nyvel\xc5\x91',
 'Service Support Engineer',
 'Former Soccer Player',
 'LUCRATOR GESTIONAR',
 'Administrator si inginer',
 'Marketing department',
 '\xc3\x9cgyvezet\xc5\x91aleln\xc5\x91k',
 'Vendedor',
 'Casier\xc4\x83',
 'Former jellmezes,kell\xc3\xa8kes',
 'Nyal\xc3\xb3ka M\xc3\xb3ka',
 'Health Care Assistant',
 'manicure and pedicure',
 'Assistenzarzt',
 'Sushi Meister',
 'Chief Engineer',
 'Artistic Director',
 'Article Writer stuck on Earth',
 'Consilier client zona rapida',
 'Former F\xc5\x91n\xc3\xb6kasszony',
 'Former Student',
 'Director Comunicare',
 'Delivery Driver',
 'nevel\xc5\x91tan\xc3\xa1r',
 'Pincer es konyhai kisegito',
 'iOS Developer',
 'Former Farmer',
 'Paraglider Instructor & athlete',
 'Former Juridisch medewerker. Ambtenaar rampen bestrijding',
 'Accounts Payable/Payroll',
 'fac cafea la sefi si colegi',
 'Former Estudante',
 'Info szakos 9 es 12 osztaj',
 'K\xc3\xb6z\xc3\xa9pp\xc3\xa1ly\xc3\xa1s,',
 'Co-Owner',
 'Operator aparate de jocuri',
 'Sales Director',
 'Former Lifeguard',
 'Masseurin',
 'Hotel Manager',
 'G\xc3\xa9p\xc3\xa9szm\xc3\xa9rn\xc3\xb6k',
 'sacerdos',
 '\xc3\x96nt\xc3\xb6de finising',
 'profesor metodist',
 'agent de paza',
 'camerista bucatar',
 'Former Multifunkcion\xc3\xa1lis',
 'Hang \xc3\xa9s f\xc3\xa9nytechnikus',
 'szilezit kft',
 'helyettes \xc3\xbcgyvezet\xc5\x91',
 'Agent Imobiliar',
 'Former Iranyito',
 'hygianis',
 'Cancelarul Studentilor la Facultatea de Teologie Ortodoxa din Cluj Napoca si Vicepresedinte la A.C.O.S.T(Asociatia Credinta Ortodoxa a Studentilor Teologi)',
 'Former Pharmacist',
 'Kraft-fahrer',
 'Masterat',
 'Former Business Administration',
 'Textile Engineer',
 'K\xc3\xa9mia szakos tan\xc3\xa1r, igazgat\xc3\xb3helyettes',
 'altalanos aszisztensno',
 'Gyogyszeresz',
 'INVATACEL',
 'CSA',
 'Agent de asigurare',
 'Real Estate Broker',
 'Pedik\xc5\xb1r,gy\xc3\xb3gypedik\xc5\xb1r',
 'Customer Service Representative (CSR)',
 'el\xc3\xa1rus\xc3\xadt\xc3\xb3n\xc5\x91',
 'Infirmi\xc3\xa8re',
 'Auditor',
 'Deputat',
 'Marketing & PR Consultant',
 'Freelancer Photographer',
 'analist credite IMM',
 'prof. invatamant primar',
 'Former Guide',
 'Bid Support Specialist',
 'V\xc3\xadz-g\xc3\xa1z \xc3\xa9s f\xc3\xbct\xc3\xa9s szerel\xc3\xa9s',
 "chef d'equipe",
 'Former Midfielder',
 'Avocat Stagiar',
 'Aszfalt bety\xc3\xa1r',
 'fasonator',
 'Former Consultant',
 'Owner',
 'Application Engineer',
 'Former T\xc3\xa1ncos',
 'Irodai asszisztens',
 'Former Administrator patrimoniu',
 'Former Tourist Guide',
 'G\xc3\xa9pkezel\xc3\xb6 oper\xc3\xa1tor',
 'Sales Reprezentative',
 'Studying',
 'Support',
 'Former Di\xc3\xa1kk\xc3\xa9pvisel\xc5\x91 / reprezentantul studentilor/ student representative',
 'Firefighter',
 'pszichopedagogus',
 'Former igazgat\xc3\xb3',
 'mag\xc3\xa1nv\xc3\xa1llalKoZs\xc3\xb3',
 'Internship HR',
 'Beatboxer',
 'Au Pair ^_^',
 'redactor tv',
 'CTC',
 'IT Infrastructure Support',
 'Scoala Gimnaziala "Nicolae Iorga"',
 'ospatar',
 'ASM (Area Sales Manager)',
 'Magyar nyelv \xc3\xa9s irodalom tan\xc3\xa1r',
 'altalanos aszisztens - sebeszet majd paliatio',
 'Instructor de viata independenta. (voluntar)',
 'Junior Marketing & Strategy Consultant',
 'Location Services Associate',
 'Middle Blocker',
 '\xc3\x9czlet\xc3\xa9p\xc3\xadt\xc5\x91 a Life-Care Corp BIO c\xc3\xa9gn\xc3\xa9l',
 'Reporter',
 'Night Guy',
 'Staplerfahrer',
 'Elokeszito',
 'Former pultos',
 '\xc3\xb6nk\xc3\xa9ntes seg\xc3\xadt\xc5\x91',
 'as. medicala',
 'Product Manager',
 'Profesoara de Pian/Orga',
 'Unit Manager',
 'vanzator comercial',
 'Romania',
 't\xc3\xb6rt\xc3\xa9nelem tan\xc3\xa1r',
 'Former Teacher',
 'asztalos,sofor',
 'Rakt\xc3\xa1rvezet\xc5\x91',
 'Tattooing',
 'adminisztrat\xc3\xadv vezet\xc5\x91',
 'Delivery Man',
 'Former Sgt.',
 'Percussion Teacher',
 'Former elado',
 'f\xc5\x91szerkeszt\xc5\x91/ redactor \xc8\x99ef',
 'Former Medic rezident pediatrie',
 'kiszolg\xc3\xa1l\xc3\xb3n\xc5\x91',
 'Pr\xc3\xaatre',
 '...',
 'Electrician',
 'Tehnician Electronist',
 '.NET Software Developer',
 'Regional Sales Manager',
 'multi trader',
 'Former Latte Artist and Mixologist',
 'Top menedzser',
 'IT Manager',
 'antrenor',
 'Stoper',
 'Underboss',
 'Nursery Nurse',
 'Former Ovodapedagogus',
 'Munkahely',
 'work',
 'm\xc3\xa9rlegk\xc3\xa9pes k\xc3\xb6nyvel\xc5\x91',
 'K\xc3\xb6z\xc3\xa9pp\xc3\xa1ly\xc3\xa1s',
 'Ing Cultura si Refacere',
 'Principal Broker/Owner',
 'Java Software Developer',
 'Web Designer & Developer',
 'HR referens',
 'Software Tester',
 'Tanul\xc3\xb3 Di\xc3\xa1k',
 'fotogr\xc3\xa1fus',
 'ospatar-barman',
 'Sz\xc3\xa9kelyudvarhely',
 'f\xc5\x91tan\xc3\xa1csos',
 'Videographer',
 'Curier.',
 'unit\xc3\xa1rius lelk\xc3\xa9szn\xc5\x91',
 '\xc5\x90r',
 'activities',
 '.SEF TUR\xc4\x82',
 'Wizard',
 'IT Support',
 'Owner/Designer',
 'instructor de zbor',
 '\xc3\x9ct\xc5\x91s szekci\xc3\xb3',
 'tan\xc3\xadt\xc3\xb3 n\xc3\xa9ni',
 'Former Leader',
 'Tuzolto',
 'AMBALATOR',
 'Manechin',
 'tolvaj ahol kap\xc3\xa1lj\xc3\xa1k a borvizet',
 'Former k\xc3\xb6nyvel\xc5\x91',
 'Anlagenmechaniker',
 'Reseller',
 'handycapepensioner',
 'Senior Artist',
 'Former Bezirksleiter',
 'Singer /Percussionist/Entertainer',
 'Operations Manager',
 'Manager! +kamionsof\xc3\xb6r :-P',
 'Psychologist',
 'KETUA',
 'Former Casnica la mama acasa',
 'szerkeszt\xc5\x91',
 'cs\xc3\xb6ves',
 'Fundraising and Communications',
 'Department of Psychology',
 'Operator de extrac\xc5\xa3ie.',
 'Correspondent',
 'European Data Specialist',
 'Coordonator, consultant de specialitate',
 'Resurse Umane',
 'Former Vezet\xc5\x91',
 'Frontend Engineer',
 'Szersz\xc3\xa1mk\xc3\xa9sz\xc3\xadt\xc5\x91 \xc3\xa9s T\xc3\xb6mbszikr\xc3\xa1s',
 'Futsal Player',
 'Former Security Agents',
 'Public Relations Specialist',
 'diler',
 'Mamma',
 'zongorista, zenekar vezeto, alapito tag',
 'Instructor auto \xc8\x99i profesor de legisla\xc8\x9bie',
 'MTB Rider',
 'Solista-Soprano',
 'Gyakorl\xc3\xb3 seg\xc3\xa9dlelk\xc3\xa9sz',
 'VIR\xc3\x81GK\xc3\x96T\xc5\x90',
 'my own boss',
 'Former Marketing Specialist',
 'Kfz-Mechaniker',
 'kontroller',
 'K\xc3\xb6rm\xc3\xb6s',
 'Former HHD \xc3\xa9s vontat\xc3\xa1si villamos - energia biztos\xc3\xadt\xc3\xa1s elsz\xc3\xa1mol\xc3\xa1sa',
 'Sysadmin',
 'Security Agent',
 'F\xc5\x91erd\xc3\xa9sz',
 'K\xc3\xbclkapcsolati Igazgat\xc3\xb3',
 'Esposa y madre',
 'Chefin,',
 'tervez\xc5\x91',
 'Developer',
 'Former Comptroller',
 '/hairstilyst',
 'Patroana',
 'Doctoral Skills Development Programme Manager',
 'Director & Principal Consultant',
 'sangeorzudemures',
 'epitesz mester',
 'Former Doorman',
 'Sportiv',
 'Boss la Bershka',
 'Eldi',
 'TRX Instructor ; E-fit edz\xc5\x91; WALKenergie oktat\xc3\xb3; Szem\xc3\xa9lyi edz\xc5\x91',
 'Szak\xc3\xa1cs',
 'sefa la inima printului meu',
 'Profesor in invatamantul prescolar',
 'Director Comercial',
 'Referee on Political Science',
 'Former Ambassador',
 'Gardener',
 'Jav\xc3\xadt\xc3\xb3 m\xc5\xb1szer\xc3\xa9sz',
 'asistent medical principal',
 'Fogtechnikus',
 "\xc3\xb8adin\xc4\x9f ..\xe2\x80\xa6 \xe2\x96\x82 \xe2\x96\x83 \xe2\x96\x84 \xe2\x96\x85 \xe2\x96\x86 \xe2\x96\x87 \xe2\x96\x88 \xe2\x9c\x96 I\xe2\x99\xa5 G@ss\xc2\xa3riNe \xe2\x9c\x96 I\xe2\x99\xa5 \xd1\x95u\xd0\xbc\xd0\xbc\xce\xb5\xca\x80 \xe2\x80\xa2 \xe2\x9c\x96I\xe2\x99\xa5 P\xc9\x91\xca\x80\xd1\x82\xd1\x83 >> \xe2\x9c\x96I\xe2\x99\xa5 \xc9\xa2\xc9\xaa\xca\x80\xe2\x84\x93\xd1\x95 \xe2\x9c\x96I\xe2\x99\xa5 A\xe2\x84\x93\xe2\x84\x93 \xd0\xbc\xd1\x83 F\xca\x80\xc9\xaae\xd0\xb8\xc4\x8fs \xe2\x9c\x96X' Sortir \xe2\x9c\x96X' Dormir \xe2\x9c\x96X' Rire \xe2\x9c\x96X' Manger \xe2\x86\x92 'lOvE' \xe2\x86\x90 \xe2\x86\x92\xe2\x99\xab \xe2\x84\xb3\xca\x8b\xca\x82\xc9\xa8\xd5\xa3\xca\x8a\xd2\xbf \xe2\x99\xab",
 'Rawmama',
 'Sch\xc3\xbcler',
 'Nevel\xc5\x91',
 'PRO',
 'CAP SMR VENTE',
 'Director & General Manager',
 'Consilier Service',
 'eleva',
 'Heggeszto-lakatos',
 'Barber',
 'Former Nyugd\xc3\xadjas vagyok',
 'Former Eln\xc3\xb6k',
 '\xc3\x81LTAL\xc3\x81NOS SEB\xc3\x89SZETI SZAK\xc3\x81POL\xc3\x93',
 'Inginer silvic',
 'Former Customer Service Agent',
 '\xc3\xb3v\xc3\xb3n\xc5\x91',
 'Software Quality Assurance',
 'Electrician/Technician',
 'Dohanyszedes',
 'Dental Assistant',
 'lelk\xc3\xa9sz',
 'Sales Support Engineer',
 'min\xc5\x91s\xc3\xa9g \xc3\xa9s folyamatellen\xc5\x91r',
 'Junior Resident doctor',
 'Former Van',
 'Operator Imagine',
 'Programmer Analyst',
 'PRIMAR - POLGARMESTER',
 'segedmunkas',
 'SZAMVEZERLESU SZERSZAMGEP BEALLITO- JAVJITO',
 'manicure',
 'Former Kassz\xc3\xa1s',
 'Csecsem\xc5\x91 \xc3\xa9s Gyermek\xc3\xa1pol\xc3\xb3n\xc5\x91',
 'Proprietario',
 'Hairstylist/Barber',
 'Transport Manager',
 'Ment\xc5\x91\xc3\xa1pol\xc3\xb3',
 'vez\xc3\xa9rigazgat\xc3\xb3 [\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88\xe2\x96\x88 ] 99%-ban',
 'FOAMING',
 'Tanitono',
 'body guard',
 'M\xcc\x80\xc3\x8a\xcc\xa3\xcc\x81N\xcc\x80\xc3\x8a\xcc\xa3G\xcc\x89\xcc\x80\xc3\x8a\xcc\xa3R',
 'Former R\xc3\xa9szlegvezet\xc5\x91',
 'Former Medical Assistant',
 'Dancer/Choreographer',
 'NOTAR PUBLIC LA BIROU INDIVIDUAL NOTARIAL CENGHER MARIA ANGELA',
 'CASIER INCASATOR',
 'zen\xc3\xa9sz',
 'lucrez',
 'gy\xc3\xb3gytornatan\xc3\xa1r',
 'Pincer',
 'rajztanar',
 '\xc5\x9eofer profesionist',
 'Transport',
 'Former Ingenieur in Lebensmittelbereich',
 'camerista',
 'Former 8-15',
 'Marketing & PR Coordinator',
 'calator',
 'Store Assistant',
 'Cook (servant)',
 'ATI (anestezie si terapie intensiva)',
 'Alap\xc3\xadt\xc3\xb3 tag',
 'Gy\xc3\xb3gypedag\xc3\xb3gus',
 'Kemenc\xc3\xa9s',
 'Software Engineer/Associate',
 'Kultur\xc3\xa1lis referens',
 'Elad\xc3\xa1si \xc3\xbcgyn\xc3\xb6k',
 'Accountant',
 'Test Pilot',
 'titk\xc3\xa1rn\xc3\xb4',
 'tag, \xc3\xb6nk\xc3\xa9ntes',
 'g\xc3\xa9pkezel\xc3\xb6',
 'Singer/Guitarist',
 'Boss Status',
 'm\xc5\xb1\xc3\xa9p\xc3\xadt\xc3\xa9sz',
 'Former ASISTENT MEDICAL',
 'Merchandiser',
 'Administraci\xc3\xb3n',
 'Bohemian Bartender',
 'Crupier / Dealer',
 'Procurement Assistant',
 'dascalita',
 'P\xc3\xa1ly\xc3\xa1zatir\xc3\xb3/ Foundraiser',
 'auditor de justi\xc8\x9bie',
 'ASISTENT STOMATOLOG',
 'Former A ferjemmel kozosen vezetjuk a ceget.',
 'Bookmaker - Fotbal Bet365',
 'Projektkoordinator',
 'Selling Assistant',
 '\xd0\xbf\xd1\x8c\xd1\x8e\xd1\x89\xd0\xb8\xd0\xb9 \xd0\xbf\xd0\xb8\xd0\xb2\xd0\xbe',
 'Manager zonal',
 'Fondateur',
 'Sales Assistant',
 'Testnevel\xc3\xb6',
 'Former Bartender',
 'Redactor / Prezentator Sport',
 'F\xc5\x91\xc3\xa1ll\xc3\xa1s\xc3\xba anya',
 'Youth Ambassador',
 'Vocals',
 'Kozmetikus, massz\xc5\x91r',
 'Profesoara',
 'Former VARR\xc3\x93N\xc5\x90',
 'Certified HU/RO Translator/Interpreter',
 'Consultant & co-owner',
 'Trailer Driver',
 'Former Gyalogos',
 'Supervisor',
 'Former energia kordin\xc3\xa1tor',
 'Former beszerzo',
 'Former Television Producer',
 'Former titk\xc3\xa1r',
 'Telemarketer',
 'Artist Plastic',
 'Former ospatar',
 'Versenyzo.',
 'titk\xc3\xa1rs\xc3\xa1g',
 'Former I',
 'sofer pe TIR',
 'Agyturkasz Pszihologus',
 'Sef pe bani mei',
 'Graphic Designer and Owner',
 'Serv. Cabinet',
 'Sok minden',
 'iskolav\xc3\xa9d\xc5\x91n\xc5\x91',
 'asistent de farmacie',
 'Farmacist',
 'F\xc5\x91szervez\xc5\x91',
 'Defense',
 'Digital Imaging & Telecom',
 'Professional Curtain Maker',
 'Emergency Medical Technician',
 'egysegvezeto / tanacsado',
 'P\xc3\xa9nzt\xc3\xa1r',
 'Former Censor',
 'Former operator ghiseu banca',
 'Sef agentie',
 'Asistent universitar',
 'Agent Relatii Clienti',
 'Senior Process Executive',
 'Manager Marketing',
 'Former dancing',
 'Former ELARUSOTO',
 'Former C.T.C',
 'Fluid Quality Responsable',
 'jucator',
 '\xc3\x92vodapedag\xc3\xb2gus',
 'waitress a',
 'Del\xc3\xa4gare',
 'tanacsado',
 'Mc / Record Producer /',
 'medic rezident ortopedie-traumatologie',
 'Targonc\xc3\xa1s',
 'confectionera',
 'sok helyen de nem mindenhol',
 'elado',
 'ENEKES',
 'Mail Carrier',
 'Katona',
 '\xc3\x9asz\xc3\xb3mester',
 'Self-empolyed',
 'Intership',
 'Eln\xc3\xb6k.',
 'Reprezentant Zonal',
 'Co . Pezidente',
 'Asistent medical-generalist',
 'batching plant operator',
 'Tax/Accounting',
 'Strength and Conditioning Coach',
 "REALIZATOR EMISIUNEA ,,DAR RUSTIC'',LA DAREGHIN TV",
 'Sales & Marketing Manager',
 'Hairdressing',
 'Adm.',
 'ASH',
 'Redactor',
 'Editor-in-chief',
 'allat gondozas',
 'Former kinetoterapeut',
 'Ski Instructor',
 'Hala,retek reszleg',
 'Freelance Graphic Designer',
 'Sportb\xc3\xa1zis',
 'Former Mercantor',
 'Production Manager',
 'F\xc5\x91szerkeszt\xc5\x91',
 'Kamionsof\xc3\xb4r',
 'Subprefect al Studen\xc8\x9bilor - Linia German\xc4\x83',
 'Korhaz',
 'Field Service Engineer',
 'Redactor/szerkeszt\xc5\x91',
 'director& producer',
 'Realizator Cinema L!VE \xc8\x99i Jurnalul de noapte',
 'HPDC Process Engineer',
 'Maseur',
 'Make Up Artist',
 'Sofer Tir',
 'System Test Engineer',
 'egyetemi tan\xc3\xa1rseg\xc3\xa9d',
 'Medic specialist chirurgie generala',
 'Former enek & egyebek',
 'Deutschlehrerin r',
 'Biztos\xc3\xadt\xc3\xa1s k\xc3\xb6zvet\xc3\xadt\xc5\x91',
 'sterilizalo',
 'Former General Manager',
 'G\xc3\xa9p\xc3\xa9sz',
 'Tulajdonos, igazgat\xc3\xb3',
 'patiser',
 'Former nem dolgozom hercegn\xc5\x91 vagyok',
 '\xc3\xa1ltal\xc3\xa1nos iskolai tan\xc3\xa1r',
 'Cete',
 'Tanar',
 'Operator Ma\xc5\x9finist',
 '-',
 'NAUI Instructor/Diving Guide',
 'Former Rector (academia)',
 'Former President',
 'Manager in siguranta alimentelor',
 'revizor',
 'Office Manager',
 'Former F\xc3\xb6\xc3\xa1ll\xc3\xa1su Nyugdijas',
 'Napkollektor es Viz-szerelo szakember!',
 'Tehnician maseur',
 'Landscape Architect',
 'Medic Primar',
 'Missionary',
 'lelk\xc3\xa9sz - pap',
 'Mk asszisztens',
 'PhD Research Student',
 'K\xc3\xb6nyvk\xc3\xb6t\xc5\x91',
 'Mitarbeiter',
 'prod.operator',
 'Artist',
 'T\xc3\xa1ncoktat\xc3\xb3',
 'Former M\xc4\x83mica \xc5\x9fi so\xc5\xa3ie full time',
 'QA Game Tester',
 'Former Manufacturing Engineer',
 'sz\xc3\xbcl\xc3\xa9sfelk\xc3\xa9sz\xc3\xadt\xc5\x91, d\xc3\xbala',
 'medic de familie',
 'Artist & Teacher',
 'H\xc3\xa1l\xc3\xb3zat vezet\xc5\x91',
 'Journalist',
 'necalificat',
 'rezidens',
 'Former szerkeszt\xc5\x91-riporter',
 'Membru Departamentul Finante',
 'Graphic Designer',
 'Oktat\xc3\xb3mester',
 'Attorney',
 'ce vreau cand vreau',
 'Sz\xc3\xb3L\xc3\xb3Git\xc3\xa1R',
 'Former testnevel\xc5\x91',
 'Kommisionierer',
 'Quality Assurance/Quality Control Engineer',
 'QA',
 'Country Manager Romania',
 'Inginer audit energetic',
 'Sa ajung kat mai sus si sa nu uit de unde am plekat.',
 'zenekarvezet\xc5\x91',
 'kisz\xc3\xa1lit\xc3\xb3',
 'Auto Mechanic',
 'Mijlocas Stanga',
 'ESPANA',
 'Future Analyst',
 'Key Account Manager',
 'Sport Conditioning Specialist',
 'Carer',
 'Former .....',
 'Worker',
 'Auditor de justitie',
 'Social Worker',
 'Profesor de legislatie rutiera/ Instructor auto',
 'specialist urolog / urologus szakorvos',
 '\xc3\xa9jszaka',
 't\xc3\xa1ncos, oktat\xc3\xb3, mindenes :)',
 'Semmittev\xc5\x91',
 'Business Owner',
 'tot aia',
 'Hacker (computer security)',
 'Art Dealer',
 'Former Photo & Graphic Designer',
 'takarito',
 'Former El\xc3\xa1rusito no',
 'Owner/CEO/Photographer',
 'Former facultate',
 'Former Logisztikai munkat\xc3\xa1rs',
 'Owner-operator',
 'ATI-s rezidens orvos',
 'Pinc\xc3\xa9rn\xc5\x91',
 'Objektleiter',
 'Zumba Fitness Instructor (ZIN)',
 '\xc3\x8env\xc3\xa3t\xc3\xa3tor',
 'Former CASIER-VANZATOR',
 'Former apolo',
 'Munkafelvev\xc5\x91 es vegrehajto aut\xc3\xb3jav\xc3\xadt\xc3\xb3 munk\xc3\xa1s',
 'Sales Advisor',
 'SAP Basis Administrator',
 'Executive Producer',
 'Senior Systems Administrator',
 'Fodr\xc3\xa1sz',
 'Tervez\xc5\x91grafikus, Illusztr\xc3\xa1tor, \xc3\xbcgyv. ig.',
 'profesor pentru invatamantul primar si prescolar',
 'Dance Teacher/Choreographer',
 'Reporter/Redactor',
 'HGV Driver Technition',
 'Graphic design - Laser Development',
 'Information Security Manager',
 'Project Officer',
 'ir\xc3\xa1ny\xc3\xadt\xc3\xb3',
 'Technical Manager',
 'Agent de Securitate (paza interventie)',
 'Former alpolg\xc3\xa1rmester',
 'sz\xc3\xa1mviteli \xc3\xbcgyint\xc3\xa9z\xc5\x91',
 '\xc3\xbcgyvezet\xc5\x91 tulajdonos',
 'white collar worker',
 'Service Desk Analyst',
 'SMT Operator',
 'Brutar-Patiser',
 'betanitott munk\xc3\xa1s',
 'Computer Technician',
 'Dr. Harangozo',
 'Former Assistant Head Waiter',
 'Sport Coordinator',
 'Agent',
 'Bartender/ Server',
 'Casier sef',
 'Sofer TIR',
 'Dancer',
 'Comercial Representative',
 'Tervez\xc5\x91, Gepeszmernok',
 'pultos-felszolg\xc3\xa1l\xc3\xb3',
 'Former Volunteering',
 'Former szolotancos',
 'tehnician-proiectant',
 'Former pivot',
 'Former csat\xc3\xa1r',
 'Casier',
 'Former Translation trainee',
 'Dingolfing',
 '\xc3\x81pol\xc3\xb3n\xc3\xb6',
 'Former osimo',
 "Master's Degree",
 'Segment Leader',
 'Former Rendez\xc5\x91 :P',
 'Consilier local',
 'Testnevel\xc5\x91 \xc3\xa9s Sport tan\xc3\xa1r',
 'Psiholog clinician & Psihoterapeut',
 'Expert tehnic',
 'Automatist Specialist',
 'artista...:*',
 'Certified Personal Trainer, Corrective Exercise Specialist',
 'Former szerkeszt\xc5\x91, \xc3\xbajs\xc3\xa1g\xc3\xadr\xc3\xb3',
 'hatv\xc3\xa9d',
 'Former N\xc5\x91i szab\xc3\xa1szat',
 'Solutions Architect',
 'Expert Comuniare',
 'Sportlehrer',
 'Casnic',
 'Igh',
 'lorry driver',
 'Profesor de educatie muzicala',
 'Former Rendez\xc5\x91, forgat\xc3\xb3k\xc3\xb6nyv\xc3\xadr\xc3\xb3',
 'Membru fondator',
 'Business Manager',
 'toplita',
 'agent de securitate',
 'K\xc3\xa9peket n\xc3\xa9zek',
 'Former sefa la buzunarul lui mami si tati',
 'Sales Rep',
 'Biblioteca "Gyulai L\xc3\xadviusz"',
 'Kardiol\xc3\xb3gus rezidens',
 'Public Relations Assistant',
 'Manager AGENTI',
 'Manikur, mukoromepites',
 'Printer Operator',
 'Consultant juridic',
 'F\xc3\xb6n\xc3\xb6k:D',
 'Hentesf',
 'Shaper',
 'Former Ofiter Call Center',
 'Managing Partner & Marketing Director',
 'Mechanic',
 'Founder and Language Trainer',
 'medic rezident neurolog',
 'EDUCATOR DE SPECIALITATE',
 'Former Organizer',
 'ITT',
 'Dphil',
 'szombatfalvi automoso',
 'Former AGRICULTOR',
 'Environmental Analyst',
 'Ing\xc3\xa9nieur Structures',
 'Receptionist & Beautician',
 'AutoCAD Drafter and Visual Lisp programmer',
 'operador',
 'Executive Assistant',
 'Ugyvezeto',
 'beosztott lelkip\xc3\xa1sztor',
 'paziente contenuto',
 'Tisza Nagyk\xc3\xb6vete',
 'Asistant Manager',
 'CEVA',
 'Disk Jockey',
 'egyetemi adjunktus',
 'Emcee/Producer',
 'Engineer',
 'Gifted Specialist',
 'CSR',
 'K\xc3\xb6zm\xc5\xb1vel\xc5\x91d\xc3\xa9si szakember',
 'Former BFKT',
 'Captain Waiter',
 'Mateo fonok',
 'gy\xc3\xb3gytorn\xc3\xa1sz, szem\xc3\xa9lyi edz\xc5\x91',
 'Design Engineer',
 'Former CAD Design Engineer',
 'Aleln\xc3\xb6k',
 'Elarusitono',
 'Inginer',
 'Service Desk Team Member',
 'Maszor',
 'DJ',
 'Eg\xc3\xa9szs\xc3\xa9g\xc3\xbcgyi aszisztens',
 'Health and Wellness Consultant',
 'Rugby Player',
 'Sound Technician',
 'Viz-gaz Karbantarto',
 'Termel\xc3\xa9si fel\xc3\xbcgyel\xc5\x91',
 'fizioterapeut',
 'Translator/Interpreter',
 'elarusitono',
 '.',
 'Mother',
 'oktat\xc3\xa1si specialista',
 'chirurg cardiovascular',
 'asistent stomatolog',
 'Former Kezd\xc5\x91 tanul\xc3\xb3',
 'varron\xc3\xb6',
 '\xc3\xa1pol\xc3\xb3',
 'Former Irodavezet\xc5\x91',
 'Pizzaiolo',
 'Inginer proiectant mecanic',
 'Future PhD Fellow',
 'Redactor-\xc8\x99ef',
 'Former igazgat\xc3\xb3n\xc5\x91',
 'Former Ce am vrut :))',
 'lev\xc3\xa9lt\xc3\xa1ros',
 'worker',
 'CTC la GST',
 'Former operator la mas. de multiplicat',
 'Former postliceal',
 'attacker',
 'f\xc3\xb6k\xc3\xb6nyvel\xc3\xb3',
 'COND AUTO',
 'Product Specialist',
 'Former Koki',
 'beosztott',
 'Secretary',
 'Ticketing Manager',
 'Electrical Engineer',
 'fonok',
 'M\xc5\xb1k\xc3\xb6rm\xc3\xb6s',
 'kazan futu',
 'Former IT Manager',
 'Engineer-CAD/CAM Programmer',
 'BARAOLT',
 'N\xc3\xa9pt\xc3\xa1ncos',
 'Former QA',
 'Calea Floresti 60/28',
 'Pharmacovigilance',
 'Former Event Promoter',
 'Former Fashion Modeling',
 'Kever\xc5\x91s',
 'Yoga School - Rishikesh Yog Peeth - RYS 200, 500',
 'Mechanical Engineer',
 'Kamion sofer (\xc8\x98ofer de camioane)',
 'profesor ciclul primar',
 'szakacs',
 'Event Manager',
 'Prouktionhelfer',
 'CNC Milling',
 'Former Supravietuire',
 'aligazgat\xc3\xb3 tan\xc3\xa1r',
 'Product Verification Engineer',
 'csomagol\xc3\xb3',
 'Former Sefa',
 'Adminisztr\xc3\xa1tor, \xc3\xbcgyint\xc3\xa9z\xc5\x91,\xc3\xa9s vezet\xc5\x91',
 'sportszerkeszt\xc5\x91',
 'Astronaut',
 'Notar public',
 'Inginer Profesor',
 'Former Graphic Designer',
 'jegyz\xc5\x91',
 'Nagyb\xc5\x91g\xc5\x91s',
 'Lab Assistant',
 'Banquet Server',
 'D\xc3\xa9lut\xc3\xa0n 4 ora',
 'Kommunik\xc3\xa1ci\xc3\xb3s referens',
 'Sales and Marketing',
 'Heged\xc5\xb1tan\xc3\xa1r',
 'Former REPREZENTANT VANZARI',
 'Former Waiter/Bartender',
 'Profesor de sintetizator, teorie, istoria muzicii',
 'Former KONYHAS',
 'Humanitas',
 'quality controler',
 'Former Tulajdonos',
 'Former laborans',
 'Gondoz\xc3\xb3',
 'Stilist protezist unghii',
 'Writer/Public Relations',
 'President',
 'Best Player',
 'PEMOTONGAN',
 'CAD Engineer',
 'Evanghelist,cantareti',
 'Former Pengusaha',
 'Asistente',
 'm\xc5\xb1v\xc3\xa9szeti vezet\xc5\x91',
 'm\xc5\xb1v\xc3\xa9szeti tan\xc3\xa1csad\xc3\xb3',
 'VJ',
 'coordonator program',
 'BEN HUSOK SRL',
 'Kassza oszt\xc3\xa1lyvezet\xc5\x91',
 'VP',
 'Former Casnica',
 'medic rezident neonatologie',
 'Medic rezident - orvos',
 'Manager aszisztens',
 'fejleszt\xc5\x91 tan\xc3\xa1r',
 'Biokozmetikus',
 'Medic rezident ortoped-traumatolog',
 'Asistenta sociala',
 'felel\xc5\x91s szerkeszt\xc5\x91',
 'Piercer',
 'Assistant Volunteer Coordinator',
 'Former Gyogyszeresz',
 'QA Automation Engineer',
 'teszteres-szemrev\xc3\xa8telez\xc3\xb5',
 'Director Economic-financiar, Manager HSEQ, Coordonator de Transport',
 'Patron',
 'anestezie \xc8\x99i terapie intensiv\xc4\x83',
 'Pflegerin',
 'Asszisztensn\xc3\xb6',
 'Kozgazdasz',
 'Fitness Instructor/Personal Trainer',
 'Manager',
 'boxer',
 'Alap\xc3\xadt\xc3\xb3',
 'k\xc3\xbclkapcsolati referens',
 'Teaching and Research Associate',
 'Project Engineer',
 'Former Boss',
 'gigolo',
 'protocol',
 'El\xc3\xa1rus\xc3\xadt\xc3\xb3 es szervizes.',
 'n\xc5\x91i fodr\xc3\xa1sz',
 'Senior TEDx Ambassador',
 'Valkes SRL',
 'The Face',
 'sofer comunitate',
 'Pictor de ma\xc8\x99ini!',
 'Associate professor',
 'Informatika \xc3\xa9s szaktan\xc3\xa1r',
 'Sofer.G\xc3\xa9pj\xc3\xa1rm\xc5\xb1vezet\xc5\x91',
 'Former Divizia Financiar-Juridic\xc4\x83, Departamentul Financiar-Contabil',
 'Belgyogyasz rezidens',
 'Kabelteve tehnikus',
 'Big Data Developer',
 'casier info',
 'Director of the Federal Bureau of Investigation',
 'Psychologist-Psychotherapist',
 'sz\xc3\xb3l\xc3\xb3 git\xc3\xa1ros',
 'Boss',
 'coafeza',
 'Former Profesor de limba si literatura romana',
 'Former adminisztrator',
 'Freerunner',
 'owner hair stylist',
 'Asistent PR',
 'Former Tan\xc3\xa1rn\xc5\x91',
 'elarusito n\xc5\x91',
 'Decorator',
 'E.S.C.',
 'Former Lawyer',
 'Personal Trainer and Formator Instructori Fitness',
 'Prefect',
 'Event Planner/Owner',
 'Maintenance.Eng',
 'Housekeeping',
 'Charter Member',
 'Former Cursant\xc4\x83',
 'Housekeeper',
 'Athlete',
 'Ember',
 'Former Guitar Player',
 'Sales Manager',
 'Football Player',
 'REPREZENTANT CALIVITA INTERNATIONAL',
 'Adminisztr\xc3\xa1tor, \xc3\xbcgyint\xc3\xa9z\xc5\x91',
 'Former Weitress',
 'Pizza & Szendwics',
 'solothurn, switzerland',
 'Pedag\xc3\xb3giai aszisztens',
 'CEE Compensation & Benefit Specialist',
 'polg\xc3\xa1rmester',
 'elad\xc3\xb3-p\xc3\xa9nzt\xc3\xa1ros',
 '\xc3\xa1cs',
 'Independent Distributor',
 'Corporal',
 'meszaros',
 'Former szerkeszt\xc5\x91',
 'Platform Manager',
 'Kun Kocsard Ozsdola',
 'Former Inspector \\ Consilier Sport',
 'adminisztr\xc3\xa1tor',
 'Social Work',
 'Operator',
 'Keramikus',
 'Manager Calitate',
 'PR felel\xc5\x91s',
 'Co-Founder/CEO',
 'Demi Chef de Rang',
 'Egeszsegugyi aszizstens',
 'Modersm\xc3\xa5lsl\xc3\xa4rare',
 'Former munkas',
 'Vice-National Representative',
 'Kommunik\xc3\xa1ci\xc3\xb3s rekl\xc3\xa1mszakember',
 'Mathematics Teacher',
 'The League team',
 'j\xc3\xa1r\xc3\xb6r',
 'Former sef',
 'Italia',
 'Int\xc3\xa9zm\xc3\xa9nyvezet\xc5\x91 helyettes',
 'Photographer and Ecological Counseling',
 'Contabil sef/Economist',
 'Material Handler',
 'Gk.vezet\xc5\x91',
 'Barber Stylist',
 'Stivuitorist',
 'JAVA back-end Developer',
 'fejleszt\xc5\x91 m\xc3\xa9rn\xc3\xb6k',
 'Front-end Developer / WordPress Developer',
 'k\xc3\xb6ztisztvisel\xc5\x91',
 'Figure Skating Coach',
 'Former szem\xc3\xa9lyi seg\xc3\xadt\xc5\x91',
 'Pharmacist',
 'Chief Procrastinator',
 'Vez\xc3\xa9rigazgat\xc3\xb3 helyettes',
 'Former Singing',
 'Cambridge-i Nyelvvizsgaztato/ Cambridge Oral EXAMINER',
 'Cantor (Christianity)',
 'Logoped',
 'Former Merchandiser',
 'Former Geol\xc3\xb3gus',
 'SEF BIROU FINANCIAR CONTABIL',
 'Former Sales representative',
 'Coordonator Departamentul de Sanatate Publica si Activitati Umanitare',
 'Tourist Information Assistant',
 'MANAGER TRUPA IRIS-Nationala de Rock a Romaniei!',
 'Customer Service Representative',
 'Couchtester',
 'Former Front End Developer',
 'Nyomd\xc3\xa1sz',
 'Translator',
 'AMG Leader',
 'Former Gesch\xc3\xa4ftsf\xc3\xbchrung',
 'raktaros',
 'Agent de vanzari',
 'iskola',
 'damasc',
 'Tan\xc3\xa1r edz\xc5\x91',
 'Sepsiszentgyorgy',
 'Former Avocat',
 'Senior ExtJS developer',
 'Full time mommy',
 'asziszt',
 'Former Photographer',
 'inginer CFDP',
 '\xc3\x89p\xc3\xadt\xc3\xa9sz',
 'Former Basketball',
 'Nevelo, Devai Szent Ferencz Alapitvany',
 'Former General Assistant',
 'arhitect',
 'Heavy Equipment Operator',
 'Frachtabteilung',
 'pincerno',
 'sofer ambulanta',
 'Former sef de gara',
 'Customer Support',
 'Transylvania Free Knight',
 'N\xc3\xa9pi \xc3\xa9nek tan\xc3\xa1r',
 'regelt\xc3\xb6l estig',
 'Nurse Team Leader',
 'Goalkeeper',
 'Bentlak\xc3\xa1s igazgat\xc3\xb3',
 ...}

In [340]:
WL={}

In [357]:
workdict=pd.read_excel('worklist.xlsx')
#create reverse word dict
rwd={i.replace(' ','').lower():workdict.columns[j]\
     for j in range(len(workdict.columns)) for i in workdict[workdict.columns[j]].values if type(i) is not float}
c=0
for i in lists['workwhat']:
    if 'Former ' in i:i=i[i.find('Former ')+7:]
    tocheck=i.replace(' ','').lower().decode('utf8')
    found=False
    for k in rwd:
        if k in tocheck:
            WL[i]=rwd[k]
            found=True
            break
    if not found:        
        c+=1
        print c,i,tocheck
        #break


1 Night Guy nightguy
2 Elokeszito elokeszito
3 pultos pultos
4 Profesoara de Pian/Orga profesoaradepian/orga
5 Romania romania
6 Tattooing tattooing
7 Delivery Man deliveryman
8 Sgt. sgt.
9 Prêtre prêtre
10 ... ...
11 Tehnician Electronist tehnicianelectronist
12 multi trader multitrader
13 Top menedzser topmenedzser
14 antrenor antrenor
15 Stoper stoper
16 Ovodapedagogus ovodapedagogus
17 Munkahely munkahely
18 work work
19 Ing Cultura si Refacere ingculturasirefacere
20 Software Tester softwaretester
21 fotográfus fotográfus
22 Székelyudvarhely székelyudvarhely
23 Videographer videographer
24 unitárius lelkésznő unitáriuslelkésznő
25 Őr Őr
26 activities activities
27 .SEF TURĂ .sefturĂ
28 Wizard wizard
29 Ütős szekció Ütősszekció
30 Tuzolto tuzolto
31 AMBALATOR ambalator
32 Manechin manechin
33 tolvaj ahol kapálják a borvizet tolvajaholkapáljákaborvizet
34 Anlagenmechaniker anlagenmechaniker
35 handycapepensioner handycapepensioner
36 KETUA ketua
37 Casnica la mama acasa casnicalamamaacasa
38 csöves csöves
39 Fundraising and Communications fundraisingandcommunications
40 Operator de extracţie. operatordeextracţie.
41 Resurse Umane resurseumane
42 Szerszámkészítő és Tömbszikrás szerszámkészítőéstömbszikrás
43 diler diler
44 Mamma mamma
45 zongorista, zenekar vezeto, alapito tag zongorista,zenekarvezeto,alapitotag
46 Gyakorló segédlelkész gyakorlósegédlelkész
47 VIRÁGKÖTŐ virÁgkÖtŐ
48 Kfz-Mechaniker kfz-mechaniker
49 kontroller kontroller
50 Körmös körmös
51 HHD és vontatási villamos - energia biztosítás elszámolása hhdésvontatásivillamos-energiabiztosításelszámolása
52 Sysadmin sysadmin
53 Főerdész főerdész
54 Esposa y madre esposaymadre
55 tervező tervező
56 /hairstilyst /hairstilyst
57 Patroana patroana
58 sangeorzudemures sangeorzudemures
59 epitesz mester epiteszmester
60 Doorman doorman
61 Eldi eldi
62 sefa la inima printului meu sefalainimaprintuluimeu
63 Gardener gardener
64 Javító műszerész javítóműszerész
65 øadinğ ..… ▂ ▃ ▄ ▅ ▆ ▇ █ ✖ I♥ G@ss£riNe ✖ I♥ ѕuммεʀ • ✖I♥ Pɑʀту >> ✖I♥ ɢɪʀℓѕ ✖I♥ Aℓℓ му Fʀɪeиďs ✖X' Sortir ✖X' Dormir ✖X' Rire ✖X' Manger → 'lOvE' ← →♫ ℳʋʂɨգʊҿ ♫ øadinğ..…▂▃▄▅▆▇█✖i♥g@ss£rine✖i♥ѕuммεʀ•✖i♥pɑʀту>>✖i♥ɢɪʀℓѕ✖i♥aℓℓмуfʀɪeиďs✖x'sortir✖x'dormir✖x'rire✖x'manger→'love'←→♫ℳʋʂɨգʊҿ♫
66 Rawmama rawmama
67 Schüler schüler
68 Nevelő nevelő
69 PRO pro
70 CAP SMR VENTE capsmrvente
71 Heggeszto-lakatos heggeszto-lakatos
72 Barber barber
73 Nyugdíjas vagyok nyugdíjasvagyok
74 ÁLTALÁNOS SEBÉSZETI SZAKÁPOLÓ ÁltalÁnossebÉszetiszakÁpolÓ
75 Software Quality Assurance softwarequalityassurance
76 Dohanyszedes dohanyszedes
77 Dental Assistant dentalassistant
78 lelkész lelkész
79 minőség és folyamatellenőr minőségésfolyamatellenőr
80 Van van
81 Operator Imagine operatorimagine
82 PRIMAR - POLGARMESTER primar-polgarmester
83 SZAMVEZERLESU SZERSZAMGEP BEALLITO- JAVJITO szamvezerlesuszerszamgepbeallito-javjito
84 Kasszás kasszás
85 FOAMING foaming
86 Tanitono tanitono
87 M̀Ệ́ǸỆG̉̀ỆR m̀Ệ́ǹỆg̉̀Ệr
88 NOTAR PUBLIC LA BIROU INDIVIDUAL NOTARIAL CENGHER MARIA ANGELA notarpubliclabirouindividualnotarialcenghermariaangela
89 lucrez lucrez
90 Şofer profesionist Şoferprofesionist
91 Ingenieur in Lebensmittelbereich ingenieurinlebensmittelbereich
92 camerista camerista
93 8-15 8-15
94 calator calator
95 Store Assistant storeassistant
96 ATI (anestezie si terapie intensiva) ati(anesteziesiterapieintensiva)
97 Alapító tag alapítótag
98 Test Pilot testpilot
99 Merchandiser merchandiser
100 Administración administración
101 Crupier / Dealer crupier/dealer
102 Procurement Assistant procurementassistant
103 dascalita dascalita
104 Pályázatiró/ Foundraiser pályázatiró/foundraiser
105 ASISTENT STOMATOLOG asistentstomatolog
106 A ferjemmel kozosen vezetjuk a ceget. aferjemmelkozosenvezetjukaceget.
107 Bookmaker - Fotbal Bet365 bookmaker-fotbalbet365
108 Selling Assistant sellingassistant
109 пьющий пиво пьющийпиво
110 Fondateur fondateur
111 Vocals vocals
112 Profesoara profesoara
113 Certified HU/RO Translator/Interpreter certifiedhu/rotranslator/interpreter
114 Gyalogos gyalogos
115 Supervisor supervisor
116 energia kordinátor energiakordinátor
117 beszerzo beszerzo
118 Telemarketer telemarketer
119 I i
120 sofer pe TIR soferpetir
121 Sef pe bani mei sefpebanimei
122 Serv. Cabinet serv.cabinet
123 Sok minden sokminden
124 asistent de farmacie asistentdefarmacie
125 Főszervező főszervező
126 Digital Imaging & Telecom digitalimaging&telecom
127 Professional Curtain Maker professionalcurtainmaker
128 Pénztár pénztár
129 Censor censor
130 operator ghiseu banca operatorghiseubanca
131 Asistent universitar asistentuniversitar
132 Senior Process Executive seniorprocessexecutive
133 dancing dancing
134 ELARUSOTO elarusoto
135 C.T.C c.t.c
136 Fluid Quality Responsable fluidqualityresponsable
137 jucator jucator
138 Òvodapedagògus Òvodapedagògus
139 Delägare delägare
140 confectionera confectionera
141 sok helyen de nem mindenhol sokhelyendenemmindenhol
142 ENEKES enekes
143 Mail Carrier mailcarrier
144 Katona katona
145 Úszómester Úszómester
146 Self-empolyed self-empolyed
147 Intership intership
148 Reprezentant Zonal reprezentantzonal
149 Co . Pezidente co.pezidente
150 batching plant operator batchingplantoperator
151 Tax/Accounting tax/accounting
152 REALIZATOR EMISIUNEA ,,DAR RUSTIC'',LA DAREGHIN TV realizatoremisiunea,,darrustic'',ladareghintv
153 Hairdressing hairdressing
154 ASH ash
155 allat gondozas allatgondozas
156 kinetoterapeut kinetoterapeut
157 Hala,retek reszleg hala,retekreszleg
158 Mercantor mercantor
159 Subprefect al Studenților - Linia Germană subprefectalstudenților-liniagermană
160 Korhaz korhaz
161 Realizator Cinema L!VE și Jurnalul de noapte realizatorcinemal!veșijurnaluldenoapte
162 Maseur maseur
163 Sofer Tir sofertir
164 enek & egyebek enek&egyebek
165 Deutschlehrerin r deutschlehrerinr
166 sterilizalo sterilizalo
167 Gépész gépész
168 patiser patiser
169 nem dolgozom hercegnő vagyok nemdolgozomhercegnővagyok
170 Cete cete
171 Operator Maşinist operatormaşinist
172 - -
173 revizor revizor
174 Föállásu Nyugdijas föállásunyugdijas
175 Tehnician maseur tehnicianmaseur
176 Missionary missionary
177 lelkész - pap lelkész-pap
178 Mitarbeiter mitarbeiter
179 prod.operator prod.operator
180 Mămica şi soţie full time mămicaşisoţiefulltime
181 QA Game Tester qagametester
182 szülésfelkészítő, dúla szülésfelkészítő,dúla
183 necalificat necalificat
184 Membru Departamentul Finante membrudepartamentulfinante
185 Attorney attorney
186 ce vreau cand vreau cevreaucandvreau
187 Kommisionierer kommisionierer
188 QA qa
189 Sa ajung kat mai sus si sa nu uit de unde am plekat. saajungkatmaisussisanuuitdeundeamplekat.
190 Mijlocas Stanga mijlocasstanga
191 ESPANA espana
192 Carer carer
193 ..... .....
194 Worker worker
195 Social Worker socialworker
196 éjszaka éjszaka
197 Semmittevő semmittevő
198 tot aia totaia
199 Hacker (computer security) hacker(computersecurity)
200 Art Dealer artdealer
201 takarito takarito
202 facultate facultate
203 Objektleiter objektleiter
204 Învãtãtor Învãtãtor
205 apolo apolo
206 Munkafelvevő es vegrehajto autójavító munkás munkafelvevőesvegrehajtoautójavítómunkás
207 irányító irányító
208 számviteli ügyintéző számviteliügyintéző
209 white collar worker whitecollarworker
210 SMT Operator smtoperator
211 Brutar-Patiser brutar-patiser
212 betanitott munkás betanitottmunkás
213 Computer Technician computertechnician
214 Sofer TIR sofertir
215 Comercial Representative comercialrepresentative
216 Tervező, Gepeszmernok tervező,gepeszmernok
217 szolotancos szolotancos
218 tehnician-proiectant tehnician-proiectant
219 pivot pivot
220 Translation trainee translationtrainee
221 Dingolfing dingolfing
222 Ápolónö Ápolónö
223 osimo osimo
224 Master's Degree master'sdegree
225 Rendező :P rendező:p
226 Psiholog clinician & Psihoterapeut psihologclinician&psihoterapeut
227 Expert tehnic experttehnic
228 hatvéd hatvéd
229 Női szabászat nőiszabászat
230 Expert Comuniare expertcomuniare
231 Casnic casnic
232 Igh igh
233 Rendező, forgatókönyvíró rendező,forgatókönyvíró
234 Membru fondator membrufondator
235 toplita toplita
236 Képeket nézek képeketnézek
237 sefa la buzunarul lui mami si tati sefalabuzunarulluimamisitati
238 Biblioteca "Gyulai Líviusz" biblioteca"gyulailíviusz"
239 Printer Operator printeroperator
240 Ofiter Call Center ofitercallcenter
241 Mechanic mechanic
242 Organizer organizer
243 ITT itt
244 Dphil dphil
245 szombatfalvi automoso szombatfalviautomoso
246 AGRICULTOR agricultor
247 Ingénieur Structures ingénieurstructures
248 operador operador
249 Executive Assistant executiveassistant
250 Ugyvezeto ugyvezeto
251 beosztott lelkipásztor beosztottlelkipásztor
252 paziente contenuto pazientecontenuto
253 Tisza Nagykövete tiszanagykövete
254 CEVA ceva
255 Disk Jockey diskjockey
256 Közművelődési szakember közművelődésiszakember
257 BFKT bfkt
258 Mateo fonok mateofonok
259 Service Desk Team Member servicedeskteammember
260 Maszor maszor
261 Sound Technician soundtechnician
262 Termelési felügyelő termelésifelügyelő
263 Translator/Interpreter translator/interpreter
264 . .
265 Mother mother
266 chirurg cardiovascular chirurgcardiovascular
267 asistent stomatolog asistentstomatolog
268 Ce am vrut :)) ceamvrut:))
269 levéltáros levéltáros
270 worker worker
271 operator la mas. de multiplicat operatorlamas.demultiplicat
272 postliceal postliceal
273 attacker attacker
274 fökönyveló fökönyveló
275 COND AUTO condauto
276 Koki koki
277 beosztott beosztott
278 fonok fonok
279 BARAOLT baraolt
280 QA qa
281 Calea Floresti 60/28 caleafloresti60/28
282 Event Promoter eventpromoter
283 Keverős keverős
284 Yoga School - Rishikesh Yog Peeth - RYS 200, 500 yogaschool-rishikeshyogpeeth-rys200,500
285 szakacs szakacs
286 Prouktionhelfer prouktionhelfer
287 CNC Milling cncmilling
288 Supravietuire supravietuire
289 csomagoló csomagoló
290 Sefa sefa
291 Astronaut astronaut
292 Notar public notarpublic
293 jegyző jegyző
294 Banquet Server banquetserver
295 Délutàn 4 ora délutàn4ora
296 REPREZENTANT VANZARI reprezentantvanzari
297 KONYHAS konyhas
298 Humanitas humanitas
299 laborans laborans
300 Gondozó gondozó
301 Stilist protezist unghii stilistprotezistunghii
302 PEMOTONGAN pemotongan
303 Evanghelist,cantareti evanghelist,cantareti
304 Pengusaha pengusaha
305 Asistente asistente
306 VJ vj
307 BEN HUSOK SRL benhusoksrl
308 VP vp
309 Casnica casnica
310 Asistenta sociala asistentasociala
311 teszteres-szemrevètelezõ teszteres-szemrevètelezõ
312 Patron patron
313 anestezie și terapie intensivă anestezieșiterapieintensivă
314 Pflegerin pflegerin
315 Kozgazdasz kozgazdasz
316 boxer boxer
317 Alapító alapító
318 gigolo gigolo
319 protocol protocol
320 Valkes SRL valkessrl
321 The Face theface
322 sofer comunitate sofercomunitate
323 Pictor de mașini! pictordemașini!
324 Freerunner freerunner
325 E.S.C. e.s.c.
326 Prefect prefect
327 Maintenance.Eng maintenance.eng
328 Housekeeping housekeeping
329 Charter Member chartermember
330 Cursantă cursantă
331 Housekeeper housekeeper
332 Ember ember
333 REPREZENTANT CALIVITA INTERNATIONAL reprezentantcalivitainternational
334 Weitress weitress
335 solothurn, switzerland solothurn,switzerland
336 ács ács
337 Corporal corporal
338 meszaros meszaros
339 Social Work socialwork
340 Operator operator
341 Keramikus keramikus
342 PR felelős prfelelős
343 Egeszsegugyi aszizstens egeszsegugyiaszizstens
344 Modersmålslärare modersmålslärare
345 Vice-National Representative vice-nationalrepresentative
346 The League team theleagueteam
347 járör járör
348 sef sef
349 Italia italia
350 Material Handler materialhandler
351 Stivuitorist stivuitorist
352 személyi segítő személyisegítő
353 Singing singing
354 Cambridge-i Nyelvvizsgaztato/ Cambridge Oral EXAMINER cambridge-inyelvvizsgaztato/cambridgeoralexaminer
355 Cantor (Christianity) cantor(christianity)
356 Logoped logoped
357 Merchandiser merchandiser
358 Geológus geológus
359 Tourist Information Assistant touristinformationassistant
360 Customer Service Representative customerservicerepresentative
361 Couchtester couchtester
362 Translator translator
363 Geschäftsführung geschäftsführung
364 raktaros raktaros
365 iskola iskola
366 damasc damasc
367 Sepsiszentgyorgy sepsiszentgyorgy
368 Full time mommy fulltimemommy
369 asziszt asziszt
370 Építész Építész
371 Basketball basketball
372 General Assistant generalassistant
373 Heavy Equipment Operator heavyequipmentoperator
374 Frachtabteilung frachtabteilung
375 sofer ambulanta soferambulanta
376 sef de gara sefdegara
377 Transylvania Free Knight transylvaniafreeknight
378 regeltöl estig regeltölestig
379 le brassus lebrassus
380 sofer sofer
381 Call Center callcenter
382 Medieval party entertainer medievalpartyentertainer
383 Evaluator extern evaluatorextern
384 reprezentanta reprezentanta
385 Stay stay
386 ISIS isis
387 Kereskedelmi asszistens kereskedelmiasszistens
388 QMS qms
389 Iluminat iluminat
390 Tehnician dentar tehniciandentar
391 Junior drilling supervisor juniordrillingsupervisor
392 Uklizeč uklizeč
393 semmii semmii
394 Mezőgazdasàgi kisegítő mezőgazdasàgikisegítő
395 tehnician radiolog tehnicianradiolog
396 eu comand eu execut eucomandeuexecut
397 ADI adi
398 Ballerina ballerina
399 Extrema dreapta extremadreapta
400 Managing Partener Travel for Senses/ www.travelforsenses.com managingpartenertravelforsenses/www.travelforsenses.com
401 Researcher researcher
402 Social Pedagogue socialpedagogue
403 Soldier soldier
404 biztositási felügyelő biztositásifelügyelő
405 Sofer Profesionist soferprofesionist
406 sef complex turistic sefcomplexturistic
407 tanítò tanítò
408 Pasticera pasticera
409 1989-2oo3 1989-2oo3
410 Geschäftsführer geschäftsführer
411 Curier dragon star curierdragonstar
412 ?????????????? ??????????????
413 Természetgyógyász-Reflexológus természetgyógyász-reflexológus
414 Saxofonos saxofonos
415 Jucatoare jucatoare
416 Humánerőforrás menedzser humánerőforrásmenedzser
417 Chemist chemist
418 Fac Mixaje facmixaje
419 fotbalist fotbalist
420 Atacant dreapta atacantdreapta
421 Hivatásos vadász hivatásosvadász
422 Krankenpflegeschülerin krankenpflegeschülerin
423 Seful meu sefulmeu
424 polirozó, lakkozó polirozó,lakkozó
425 Vállalkozó vállalkozó
426 kondasz kondasz
427 Fegyveres Biztonsági Őr fegyveresbiztonságiŐr
428 Cremona cremona
429 nu sunt la ciceu nusuntlaciceu
430 Gazdasági Ellátó Szervezet(GESZ) - ügyintéző gazdaságiellátószervezet(gesz)-ügyintéző
431 KATOLIKUS VALLÁSTANÁR katolikusvallÁstanÁr
432 sudent sudent
433 Svédország svédország
434 Personal Carer personalcarer
435 Falusi vendégszervező és szállásoló falusivendégszervezőésszállásoló
436 Intern intern
437 Basist basist
438 Ops ops
439 még nincs :) mégnincs:)
440 Esztergályos, Teherautó sofőr esztergályos,teherautósofőr
441 Principal principal
442 Cook (profession) cook(profession)
443 Unitárius lelkész unitáriuslelkész
444 :) :)
445 leado leado
446 Deutschlehrerin deutschlehrerin
447 mananger mananger
448 Junior research fellow juniorresearchfellow
449 Avon avon
450 melos melos
451 With El Shaarawy 92 :3 withelshaarawy92:3
452 ügyelő ügyelő
453 Entrepreneurship entrepreneurship
454 Brumi brumi
455 programozó programozó
456 pénzügyi kontroller pénzügyikontroller
457 Dramaturg dramaturg
458 Semmi xd semmixd
459 Sensei sensei
460 Eigenaar eigenaar
461 Altenpflege asisteentin altenpflegeasisteentin
462 nogyogyaszat nogyogyaszat
463 UNGUR ungur
464 Füllerin/Füllraum füllerin/füllraum
465 Tag tag
466 ............ ............
467 uzlet uzlet
468 Intezo Futsal intezofutsal
469 Organizer organizer
470 Tervező és Csillagjáró tervezőéscsillagjáró
471 Vadász vadász
472 unde vreau eu!! undevreaueu!!
473 GESTIONE APPALTI gestioneappalti
474 Befekteö befekteö
475 Zabot hegyez zabothegyez
476 Professional Assistant professionalassistant
477 Realizator, Moderator realizator,moderator
478 Rider rider
479 hosszu... hosszu...
480 F5 f5
481 lucrator comercial lucratorcomercial
482 New fasion newfasion
483 kinetoterapeut kinetoterapeut
484 Sef de lucrari sefdelucrari
485 kedves nővérke kedvesnővérke
486 Turismiturundus turismiturundus
487 Charpentier charpentier
488 munkás munkás
489 szobafestő burkolo szobafestőburkolo
490 Expert TOPOGRAF experttopograf
491 Delegate delegate
492 intretinere intretinere
493 semmi semmi
494 Buzzer buzzer
495 Administrative Assistant administrativeassistant
496 BadassButtonpusherColorWizard badassbuttonpushercolorwizard
497 1st year college 1styearcollege
498 work Legalizare Canabis worklegalizarecanabis
499 PC Operator pcoperator
500 Cluj Napoca , pta 1 Mai , nr.1-3 clujnapoca,pta1mai,nr.1-3
501 PROBLÉMAMEGOLDO:) problÉmamegoldo:)
502 Weight & Balance weight&balance
503 MSO mso
504 Mid-Laner mid-laner
505 Computer Technician computertechnician
506 kezilabda es foci kezilabdaesfoci
507 Környezetvédelmi ügyintéző környezetvédelmiügyintéző
508 Termékforgalmazó termékforgalmazó
509 Member member
510 Videographer videographer
511 Maintenance Worker maintenanceworker
512 Accountancy accountancy
513 bisztonsagi or bisztonsagior
514 Tuttofare tuttofare
515 Juristconsult juristconsult
516 Cabin Attendant cabinattendant
517 cotabila cotabila
518 Expert informații afaceri expertinformațiiafaceri
519 Forza Hungaria KFT forzahungariakft
520 Arbeiter arbeiter
521 Quality Assurance qualityassurance
522 Dermatologist dermatologist
523 főegyházmegyei levéltáros főegyházmegyeilevéltáros
524 Szekundás szekundás
525 EL JEFECITO eljefecito
526 cold dye colddye
527 Udvarhely Ergoline Szolárium udvarhelyergolineszolárium
528 plimbarile plimbarile
529 sef de magazin sefdemagazin
530 Köchin köchin
531 Studienbüro IEF studienbüroief
532 CNC Operator (Computer Numeric Control Operator) cncoperator(computernumericcontroloperator)
533 100%-os 100%-os
534 Prostu prostu
535 számítógépes adatrögzítő számítógépesadatrögzítő
536 S.G.P s.g.p
537 Socio socio
538 terkovezes,lakasfelujitas,szigeteles szinezes terkovezes,lakasfelujitas,szigetelesszinezes
539 Tehnician Statii Satelit tehnicianstatiisatelit
540 NOi - CCM noi-ccm
541 Senior SpaceCow Hunter seniorspacecowhunter
542 Entrepreneurship entrepreneurship
543 SZAKMUNKÁS szakmunkÁs
544 Fotballspiller fotballspiller
545 szobalàny szobalàny
546 régész régész
547 Bla.bla...bla bla.bla...bla
548 Padurar padurar
549 fuvos dobos fuvosdobos
550 Multipland multipland
551 Vocea Romaniei,Romanii au Talent vocearomaniei,romaniiautalent
552 Operator(CNC) operator(cnc)
553 Hairsylist hairsylist
554 Adáskoordinátor adáskoordinátor
555 ASISTENTA asistenta
556 Computer Scientist computerscientist
557 Nincs meg nincsmeg
558 Szekely Dental szekelydental
559 Kereskedelem kereskedelem
560 http://instagram.com/thesaltpeppersugar http://instagram.com/thesaltpeppersugar
561 Mindenes mindenes
562 Draiver Truck DHL draivertruckdhl
563 Car Mechanic carmechanic
564 Hangteknikus hangteknikus
565 patron, sofer patron,sofer
566 Kantinamedarbeid kantinamedarbeid
567 Junior Hostess juniorhostess
568 venczel József Iskolaközpont venczeljózsefiskolaközpont
569 Sörfőző sörfőző
570 trichinella vizsgalas trichinellavizsgalas
571 ORAS TOPLITA HR orastoplitahr
572 La finisaje lafinisaje
573 Dobol dobol
574 viragkoto viragkoto
575 A3 Tank Montage a3tankmontage
576 Háztartásbeli háztartásbeli
577 Master Fruitkiller masterfruitkiller
578 CNC marós cncmarós
579 Lecturer lecturer
580 Asistent Universitar Drd. asistentuniversitardrd.
581 Referee referee
582 milf pornstar milfpornstar
583 Vicepresedinte Corpul Profesional al Mediatorilor Mures vicepresedintecorpulprofesionalalmediatorilormures
584 Laboratory Assistant laboratoryassistant
585 Menedzser menedzser
586 RH rh
587 Tubás tubás
588 TANÍTÓNŐ tanÍtÓnŐ
589 valalkozo valalkozo
590 MC mc
591 Sofőr sofőr
592 Hajhosszabbító hajhosszabbító
593 Soldat (rank) soldat(rank)
594 presedintele SUA presedintelesua
595 esküvőszervező esküvőszervező
596 salvator terasz salvatorterasz
597 Esztergályos esztergályos
598 Magna Racino magnaracino
599 KAM kam
600 laboranta laboranta
601 tanítvány tanítvány
602 Assistant Lecturer assistantlecturer
603 segitő segitő
604 fokonyvelo fokonyvelo
605 Lehrling lehrling
606 asistent personal asistentpersonal
607 operator calculator operatorcalculator
608 Járőr járőr
609 Scrum Master scrummaster
610 Operat Tv operattv
611 asistent social UPU - SMURD asistentsocialupu-smurd
612 Sefa sefa
613 babysiter babysiter
614 Varó nó varónó
615 kiszolgalo kiszolgalo
616 CNC Programierer cncprogramierer
617 colesano cefalu colesanocefalu
618 Assistente assistente
619 Vice Mayor vicemayor
620 Facturista facturista
621 Ortopédia ortopédia
622 smecher inrait smecherinrait
623 Patrón patrón
624 Lelkész lelkész
625 vasalo vasalo
626 Betanitot munkás. betanitotmunkás.
627 Translator and Interpreter translatorandinterpreter
628 A napnal es a hold fizeti anapnalesaholdfizeti
629 Lélekgyógyász terapeuta lélekgyógyászterapeuta
630 Confectioner confectioner
631 animator socio-educativ animatorsocio-educativ
632 Operaio operaio
633 Programator Productie programatorproductie
634 Rope Access Technician ropeaccesstechnician
635 Enekesno enekesno
636 Weitress weitress
637 trombita trombita
638 meseriash meseriash
639 Pirate pirate
640 tel 0746392401 elérhetö tel0746392401elérhetö
641 Membru membru
642 Transator transator
643 pilot builder pilotbuilder
644 frec menta frecmenta
645 Lieutenant lieutenant
646 Sminkes sminkes
647 Elektronista műszerész elektronistaműszerész
648 PÉK pÉk
649 Assistenzärztin für Psychiatrie und Psychotherapie assistenzärztinfürpsychiatrieundpsychotherapie
650 1st 1st
651 Marosvasarhely marosvasarhely
652 Ospatr ospatr
653 vopsitor auto vopsitorauto
654 CCZR cczr
655 Team Relations teamrelations
656 Över Läkare Psykiatriker Överläkarepsykiatriker
657 Paketzusteller paketzusteller
658 Trabajador trabajador
659 Voluntar voluntar
660 BRUTAR brutar
661 Asistent social asistentsocial
662 ápolònő ápolònő
663 ÁLLATEGÉSZSÉGÜGYI SZAKSEGÉD ÁllategÉszsÉgÜgyiszaksegÉd
664 árubeszerző árubeszerző
665 business & mail e.c.l csp business&maile.c.lcsp
666 SZÁSZNIKA KFT szÁsznikakft
667 karos széria lakatos karosszérialakatos
668 kantor kantor
669 Fogathajtó fogathajtó
670 CNC Operator cncoperator
671 Restaurant Assistant restaurantassistant
672 šofer šofer
673 Szél mob szélmob
674 kos karoly koskaroly
675 Cluj -Napoca cluj-napoca
676 Delegation delegation
677 COTROLOR DE ZBOR cotrolordezbor
678 cotracom cotracom
679 Pastor pastor
680 GÖRGÉNYÜVEGCSŰR-i ÁLTALÁNOS GÍMNÁZIUM gÖrgÉnyÜvegcsŰr-iÁltalÁnosgÍmnÁzium
681 Tűzoltó tűzoltó
682 Elhivott elhivott
683 Ingatlanértékesítő ingatlanértékesítő
684 OFITER SERVICII CLIENTI ofiterserviciiclienti
685 politist politist
686 konyhai kisegítő konyhaikisegítő
687 Social Work socialwork
688 ipari alpinizmus iparialpinizmus
689 MASEUR maseur
690 Tulaj tulaj
691 Jucator Fotbal jucatorfotbal
692 Terjesztesi menedzser terjesztesimenedzser
693 Csomagolás"!! csomagolás"!!
694 DSE dse
695 Cosmetician cosmetician
696 Sofer TiR si AUTOBUZ sofertirsiautobuz
697 Casnica casnica
698 I.I. Stanciu Dorin i.i.stanciudorin
699 atléta atléta
700 Sysadmin sysadmin
701 Cuptorist cuptorist
702 Research research
703 medienzustel gmb medienzustelgmb
704 Povestitor povestitor
705 Lenes junior lenesjunior
706 geologus geologus
707 Osnabruck osnabruck
708 ingrijitor batrani ingrijitorbatrani
709 Psiholog psiholog
710 tenoros tenoros
711 florareasa florareasa
712 Member/Volunteer member/volunteer
713 masaj masaj
714 Stilist- protezist stilist-protezist
715 barnan barnan
716 General Officer generalofficer
717 Kereskedelmi előadó kereskedelmielőadó
718 Lemezlovas lemezlovas
719 Bagian Keuangan bagiankeuangan
720 Sefff sefff
721 str. Octavian Goga, nr. 47 str.octaviangoga,nr.47
722 Meneger% meneger%
723 Söfőr söfőr
724 Méhész méhész
725 stalp de sprijin stalpdesprijin
726 Team Member teammember
727 sehol sehol
728 Crew crew
729 Founding Member foundingmember
730 pr menedzser prmenedzser
731 Sambiase sambiase
732 Logística logística
733 Comandante comandante
734 tanulo tanulo
735 Pedagogia pedagogia
736 REPREZENTANT VANZARI reprezentantvanzari
737 cm muresan elena cmmuresanelena
738 Choreography & Teaching choreography&teaching
739 Rajongoo..<3 rajongoo..<3
740 Sound Technician soundtechnician
741 elokonyvelo elokonyvelo
742 Professeur professeur
743 Pincėrnő pincėrnő
744 ITC MGR itcmgr
745 Terapeut in terapia cu ingeri terapeutinterapiacuingeri
746 Vorarbeiter vorarbeiter
747 Asociat asociat
748 szinész szinész
749 SOFÖR-Robi Taxi sofÖr-robitaxi
750 Sofer sofer
751 Attacante❤ attacante❤
752 Budapest budapest
753 Housekeeper housekeeper
754 Marine (military) marine(military)
755 Soldat (rank) soldat(rank)
756 RULOTE IMPORT ANGLIA ruloteimportanglia
757 biológus biológus
758 Scientist scientist
759 nővér nővér
760 Nővérke nővérke
761 szakapolo szakapolo
762 Ospătar ospătar
763 megnincs megnincs
764 The Best thebest
765 Customer Service Advisor customerserviceadvisor
766 COO coo
767 line feeder linefeeder
768 manutentore manutentore
769 antrenor de cadane antrenordecadane
770 SEF SUPRAVEGHERE CASE sefsupravegherecase
771 Diagnostic Technician diagnostictechnician
772 Princess princess
773 Termelésirányító termelésirányító
774 badybuilder badybuilder
775 Mijlocas dreapta mijlocasdreapta
776 Data Entry Operator dataentryoperator
777 suliban suliban
778 Performer performer
779 Executive - executive-
780 Treaba mea! treabamea!
781 Marshall marshall
782 Busser busser
783 Cardiologist cardiologist
784 Asistent Relatii Publice si Comunicare asistentrelatiipublicesicomunicare
785 Élni tanitok Élnitanitok
786 Basketball basketball
787 Asistenta sefa asistentasefa
788 psihopedagog psihopedagog
789 titkarno titkarno
790 Violinist violinist
791 "Mijlocas" "mijlocas"
792 Clinica Polisano clinicapolisano
793 Gazdasági ügyintéző gazdaságiügyintéző
794 Trail & Sosea trail&sosea
795 Admiral admiral
796 Organist organist
797 sofer autobuz soferautobuz
798 The Hitchhiker thehitchhiker
799 NON STOP nonstop
800 sef sef
801 Stage Lighting Technician stagelightingtechnician
802 Personal Assistant / Administration Assistant personalassistant/administrationassistant
803 Presedinte presedinte
804 Cameraman cameraman
805 reinigung person reinigungperson
806 BO$$ bo$$
807 Representante representante
808 Servitris servitris
809 Admin.a admin.a
810 Maintenance Technician maintenancetechnician
811 LOADING..... ███████████]99% loading.....███████████]99%
812 szpeciális nevelő szpeciálisnevelő
813 BRUTAR brutar
814 superior la cratitza superiorlacratitza
815 Baga Bani bagabani
816 Suli suli
817 One man army onemanarmy
818 italia roes italiaroes
819 croitoreasa croitoreasa
820 Service service
821 by Corina TInca bycorinatinca
822 instrumentist instrumentist
823 Mindene mindene
824 Sef raion produse nealimentare sefraionprodusenealimentare
825 Metzger metzger
826 Én vagyok az újrahangoló :) Énvagyokazújrahangoló:)
827 auxiliar de enfermeria en geriatria auxiliardeenfermeriaengeriatria
828 Mona Lisa mennyaszonyi ruha szalon monalisamennyaszonyiruhaszalon
829 Maler maler
830 Kauffrau im Gesundheitswesen kauffrauimgesundheitswesen
831 Harangozó - Sekrestyés harangozó-sekrestyés
832 operator specializat operatorspecializat
833 kereskedő kereskedő
834 Ovodapedagògus ovodapedagògus
835 hidegkonyha hidegkonyha
836 Composer composer
837 fonnok fonnok
838 Hearthstone Coverage Crew hearthstonecoveragecrew
839 Miko kedvem vn dolgozni mikokedvemvndolgozni
840 készruha,méterárú,rövidáru készruha,méterárú,rövidáru
841 Warrior warrior
842 Technical Fleet Assistant technicalfleetassistant
843 primu loc primuloc
844 képzelgés képzelgés
845 komisszios komisszios
846 London london
847 instalator instalator
848 Make up makeup
849 Qualitätsprüferin qualitätsprüferin
850 Veterinary Surgeon veterinarysurgeon
851 Under-14;16;18 under-14;16;18
852 Club club
853 felugyelo felugyelo
854 Bodigoard bodigoard
855 Software Tester/QA softwaretester/qa
856 Co-CEO co-ceo
857 Personal Tainer personaltainer
858 Employee employee
859 állat kezelö állatkezelö
860 Nagybogos nagybogos
861 Fondator fondator
862 M.D. m.d.
863 Balmazujvaros balmazujvaros
864 Extrema extrema
865 egyetemi gyakornok egyetemigyakornok
866 Actriz actriz
867 organizator prestari servicii organizatorprestariservicii
868 Ügyfélszolgálati munkatárs Ügyfélszolgálatimunkatárs
869 Rapper rapper
870 INFERMIERA infermiera
871 rabszolga rabszolga
872 lakatos lakatos
873 Legal Practitioner legalpractitioner
874 Geschäftsfürer geschäftsfürer
875 AUTO-LAKÁS BIZTOSITÁS auto-lakÁsbiztositÁs
876 Din zestrea Ardealului dinzestreaardealului
877 Psihoterapeut psihoterapeut
878 HR Assistant hrassistant
879 Headd headd
880 Iegzisto explicatie iegzistoexplicatie
881 nincsen nincsen
882 Pedagog Social pedagogsocial
883 Hochei hochei
884 Énekes/ szinesz Énekes/szinesz
885 Asistent de laborator la vatra... asistentdelaboratorlavatra...
886 MUCITOR mucitor
887 Sef. Atelier Mecanic sef.ateliermecanic
888 tördelő tördelő
889 Mester mester
890 lelkipásztor lelkipásztor
891 Membru cu drept de vot membrucudreptdevot
892 HSE Officer hseofficer
893 Nutritionist-Dietetician nutritionist-dietetician
894 Karrier program koordinátor karrierprogramkoordinátor
895 Aripa si Mijloc aripasimijloc
896 Customer Care Representative customercarerepresentative
897 Transform Worker transformworker
898 http://www.mydoterra.com/timeacsoregi/ http://www.mydoterra.com/timeacsoregi/
899 KOSTOLÓ kostolÓ
900 Vocals/Keyboards/Composer vocals/keyboards/composer
901 Assistant Controller assistantcontroller
902 League of Legends' leagueoflegends'
903 CNC Programer Asist cncprogramerasist
904 imbianchino imbianchino
905 Ministrans ministrans
906 Co-fondator co-fondator
907 Chauffeur chauffeur
908 supraveghetor slot-machine supraveghetorslot-machine
909 Auszubildende ✌ auszubildende✌
910 Self Employed and Loving It! selfemployedandlovingit!
911 Production production
912 Védelmi ellenőr védelmiellenőr
913 International Account Advisor with German Language internationalaccountadvisorwithgermanlanguage
914 Finance Member financemember
915 tehnikus tehnikus
916 PG/SG pg/sg
917 DGKS dgks
918 bekefentarto bekefentarto
919 Hegyimentő, Mountain Rescue Team Dancuras, Svéd és Gyógymasszőr Fitpoint hegyimentő,mountainrescueteamdancuras,svédésgyógymasszőrfitpoint
920 Batman batman
921 Read Born to Win, Thriller and I love it when I catch u looking readborntowin,thrillerandiloveitwhenicatchulooking
922 Produksjonsmedarbeider produksjonsmedarbeider
923 Freelance PR freelancepr
924 Musician musician
925 Confectioner confectioner
926 tehnician proiectant tehnicianproiectant
927 Lăcătuş lăcătuş
928 Hausmeister hausmeister
929 asociat unic asociatunic
930 ofiter de politie ofiterdepolitie
931 szakacs seged szakacsseged
932 erdész hivatásos vadász erdészhivatásosvadász
933 Pflegefachkraft pflegefachkraft
934 Raktaros raktaros
935 PFA pfa
936 Mud Logger mudlogger
937 Music Composer musiccomposer
938 Runner runner
939 Self-employed self-employed
940 Full Time Mom fulltimemom
941 badante badante
942 Dansatoare dansatoare
943 zongorista zongorista
944 Van van
945 Lapterjesztő lapterjesztő
946 ..... .....
947 restaurátor restaurátor
948 Operator operator
949 Creative executive creativeexecutive
950 Erdész erdész
951 Depanator PHONES:) depanatorphones:)
952 fara functie doar in functie! farafunctiedoarinfunctie!
953 Személyi Bankár személyibankár
954 pek pek
955 Lapárus lapárus
956 Live-in au-pair live-inau-pair
957 nyugdíjas nyugdíjas
958 Sighiosara sighiosara
959 ♥Șefă ♥Șefă
960 Physician physician
961 Lautary lautary
962 TRATORISTA TRANSBORDO tratoristatransbordo
963 Adminstrator Assistant adminstratorassistant
964 Corepetitor corepetitor
965 Atacant atacant
966 Ambalaj ambalaj
967 operator utilaje operatorutilaje
968 Preot preot
969 preparator marfa preparatormarfa
970 It ot itot
971 Teszteres operator teszteresoperator
972 Gorocsfalvi Ovoda -ovono gorocsfalviovoda-ovono
973 Junior Member juniormember
974 Clubul Copiilor clubulcopiilor
975 Radio Personality radiopersonality
976 Kommissionierung kommissionierung
977 Concierge concierge
978 Schlosser schlosser
979 Happy Employee happyemployee
980 dealer auto http://www.autokalapacs.autovit.ro/ dealerautohttp://www.autokalapacs.autovit.ro/
981 Riportíró, Kult-Turista riportíró,kult-turista
982 Commander commander
983 montatore mecanico montatoremecanico
984 Ghid de Turism ghiddeturism
985 massage /kinetoterapeut massage/kinetoterapeut
986 Latio latio
987 Live-in Carer live-incarer
988 Hired gun hiredgun
989 szülész-nőgyógyász szülész-nőgyógyász
990 curier curier
991 Operator injectare mase plastice operatorinjectaremaseplastice
992 Capo capo
993 Alszegi Út.51 alszegiÚt.51
994 Dolgoztam Eleget Most Hagyom Dolgojzon Mas Is. dolgoztamelegetmosthagyomdolgojzonmasis.
995 Executive Committee Member executivecommitteemember
996 diszponens diszponens
997 Classified classified
998 Peneliti peneliti
999 árufeltöltő árufeltöltő
1000 Accounting Department accountingdepartment
1001 Vulkanizáló vulkanizáló
1002 SMT Operátor smtoperátor
1003 még suliba járok mégsulibajárok
1004 Beosztom magam :-) beosztommagam:-)
1005 Kasszás kasszás
1006 Security security
1007 Distribuitor distribuitor
1008 tehnician operator tehnici de calcul tehnicianoperatortehnicidecalcul
1009 Mecanic utilaj greu mecanicutilajgreu
1010 Szabászat,beigazitás szabászat,beigazitás
1011 Constructor constructor
1012 fucskisoblicski fucskisoblicski
1013 Kántor kántor
1014 Vedo vedo
1015 szülésznő szülésznő
1016 Magánválalkozó magánválalkozó
1017 Református lelkipásztor reformátuslelkipásztor
1018 sor vezeto sorvezeto
1019 Penzugyi controller penzugyicontroller
1020 ovono ovono
1021 sef dep Delicatese sefdepdelicatese
1022 Mercenary mercenary
1023 Legion Guard legionguard
1024 Host/Hostess host/hostess
1025 papirtologato papirtologato
1026 Vagyonőr vagyonőr
1027 hogy mit dolgozok titok hogymitdolgozoktitok
1028 Freza mester :) frezamester:)
1029 pole position poleposition
1030 Helper helper
1031 bicycle composer bicyclecomposer
1032 Tourism tourism
1033 Erdesztehnikus erdesztehnikus
1034 Pengacara pengacara
1035 SC Pradox srl scpradoxsrl
1036 Kereskedelmi dolgozo kereskedelmidolgozo
1037 SM sm
1038 Volunteer volunteer
1039 Operátor operátor
1040 Trainee trainee
1041 Volunteer / Chairman volunteer/chairman
1042 Pintor pintor
1043 semi közöd hozá semiközödhozá
1044 Testor testor
1045 STEP step
1046 Veteran Monkey veteranmonkey
1047 Cellist cellist
1048 MOTOSTIVUITORIST motostivuitorist
1049 Társak boltja :) társakboltja:)
1050 BUN LA TOATE bunlatoate
1051 Mailhandler mailhandler
1052 Drone Pilot dronepilot
1053 Egyéni vállalkozó egyénivállalkozó
1054 Businessperson businessperson
1055 COND AUTO INTERNATIONAL condautointernational
1056 Alakformáló, Zumba, Salsa alakformáló,zumba,salsa
1057 Producător producător
1058 Fatolvaj fatolvaj
1059 Egészségügyi sszisztens egészségügyisszisztens
1060 CANTARET cantaret
1061 Someone who stares someonewhostares
1062 via proventa nr 31 viaproventanr31
1063 Dob dob
1064 DaF-Lehrer/Prüfer daf-lehrer/prüfer
1065 Rendezvényszervező rendezvényszervező
1066 Preparator agancsfarago preparatoragancsfarago
1067 Member of Congress memberofcongress
1068 rajongó rajongó
1069 gyógyszerész gyógyszerész
1070 Formatia "AKTUAL" Sighisoara formatia"aktual"sighisoara
1071 Beszerzesi es Eladasi kepviselo:) beszerzesieseladasikepviselo:)
1072 fundas fundas
1073 Nimic nimic
1074 WRO1,Volkswagen wro1,volkswagen
1075 Trokenbau trokenbau
1076 Realizator emisiuni realizatoremisiuni
1077 óvónéni óvónéni
1078 Psiholog-psihoterapeut psiholog-psihoterapeut
1079 Csigapásztor csigapásztor
1080 Motivációs előadó motivációselőadó
1081 Sofèr sofèr
1082 C, OG, DS c,og,ds
1083 Bakter bakter
1084 Pilot pilot
1085 Tengő tengő
1086 Acasã la mama şi la tata acasãlamamaşilatata
1087 Hostess hostess
1088 asfaltator asfaltator
1089 Művelődésszervező művelődésszervező
1090 Senior senior
1091 Muvesz muvesz
1092 Nevelőnő nevelőnő
1093 mikor mi mikormi
1094 trefilator trefilator
1095 sef de sala sefdesala
1096 A Tegla ategla
1097 Hmmm hmmm
1098 Giáo sư giáosư
1099 Facebook V.I.P Account █║▌│█│║▌║││█║▌│║█║▌ © Official Profile 2010 facebookv.i.paccount█║▌│█│║▌║││█║▌│║█║▌©officialprofile2010
1100 Mechanic mechanic
1101 primás primás
1102 Butcher butcher
1103 rerezentant avon rerezentantavon
1104 Fumigation fumigation
1105 Frizer frizer
1106 Couturière couturière
1107 tancos tancos
1108 jucator de fotbal jucatordefotbal
1109 Cook cook
1110 Mérlegkezelő mérlegkezelő
1111 Szervezeti elnok szervezetielnok
1112 LACATUS MECANIC lacatusmecanic
1113 Gáz taposás gáztaposás
1114 Summer Intern summerintern
1115 IT it
1116 az m1 azm1
1117 Mother of Twins motheroftwins
1118 Sysop sysop
1119 Professional Hitman professionalhitman
1120 professeur de danse professeurdedanse
1121 Lucrător comercial lucrătorcomercial
1122 Personal Training personaltraining
1123 Minőségi ellenőr minőségiellenőr
1124 Adiministrator adiministrator
1125 Vonatkerék pumpáló vonatkerékpumpáló
1126 Eb eb
1127 Sozialbetreuung sozialbetreuung
1128 Sefu Lautarilor sefulautarilor
1129 SC MR RAZVAN CONSTRUCTSRL scmrrazvanconstructsrl
1130 Front End Dev frontenddev
1131 los angeles california losangelescalifornia
1132 Ingrijitor/Indrumator ingrijitor/indrumator
1133 PR Intern printern
1134 As.med. Lab. as.med.lab.
1135 AUTOLIV autoliv
1136 Segéééééééd segéééééééd
1137 Közgazdász közgazdász
1138 Courier courier
1139 Cadru didactic universitar cadrudidacticuniversitar
1140 gestionar gestionar
1141 Munkatárs munkatárs
1142 Iskolas iskolas
1143 Ceramist ceramist
1144 Badantä badantä
1145 Personal Training personaltraining
1146 Általános ügyintéző Általánosügyintéző
1147 Vocal vocal
1148 vilanyos vilanyos
1149 Technical Lead technicallead
1150 M.E.O.szabaszat m.e.o.szabaszat
1151 Drumer drumer
1152 beautyful bliinds beautyfulbliinds
1153 vállalkozó vállalkozó
1154 Komisiozo komisiozo
1155 pénz költés pénzköltés
1156 ASIST asist
1157 Legionario legionario
1158 be- és kiosztott be-éskiosztott
1159 Felügyelő Bizottság tagja felügyelőbizottságtagja
1160 Kolozsvartarsasag.com/pagina.php kolozsvartarsasag.com/pagina.php
1161 Treasurer treasurer
1162 Alapítótag, Óvónő alapítótag,Óvónő
1163 Auto Export autoexport
1164 kazánfűtő kazánfűtő
1165 Pénztáros pénztáros
1166 Moasa moasa
1167 EARUSITO earusito
1168 Event Organizer eventorganizer
1169 Pengusaha pengusaha
1170 Myself myself
1171 Asistent - farmacie asistent-farmacie
1172 copil copil
1173 Anyuci anyuci
1174 jobbhatved... :) jobbhatved...:)
1175 Admin admin
1176 Gipsi. gipsi.
1177 Capra Neagra Pioana Brasov capraneagrapioanabrasov
1178 Subofiter operativ subofiteroperativ
1179 Head Person of Interest headpersonofinterest
1180 Lelkész lelkész
1181 Korebacsos korebacsos
1182 ADC/Bot adc/bot
1183 Mommy mommy
1184 Kasiere ab Play Center Tauberbischofsheim kasiereabplaycentertauberbischofsheim
1185 General Ledger Clerk generalledgerclerk
1186 la sala lasala
1187 Percutionist percutionist
1188 Perfect perfect
1189 CS II (senior researcher) csii(seniorresearcher)
1190 Műszaki ellenőr műszakiellenőr
1191 asistent farmacie asistentfarmacie
1192 Crupier crupier
1193 Mechanikai Muszeresz mechanikaimuszeresz
1194 Mecanic Locomotiva mecaniclocomotiva
1195 Mintakészítő mintakészítő
1196 szakelőadó szakelőadó
1197 Toldode toldode
1198 Masszőr masszőr
1199 Professional Interpreter and Translator professionalinterpreterandtranslator
1200 kántor-karnagy / church organist and choir conductor kántor-karnagy/churchorganistandchoirconductor
1201 Barosan barosan
1202 "Dirigente" "dirigente"
1203 Cooker cooker
1204 takarítónő takarítónő
1205 Eladò eladò
1206 operatőr operatőr
1207 Atleta atleta
1208 Nullafacente nullafacente
1209 Counselor counselor
1210 QA Automation qaautomation
1211 Operator Tricotaje operatortricotaje
1212 Blondy blondy
1213 HR/Payroll hr/payroll
1214 Administrador administrador
1215 Teológiai hallgató teológiaihallgató
1216 Teleházvezetö teleházvezetö
1217 Surveying surveying
1218 Read The Diary of Ellen Rimbauer: My Life readthediaryofellenrimbauer:mylife
1219 Trezor trezor
1220 Benzinkutas benzinkutas
1221 Digital Marketer digitalmarketer
1222 Ifjúságpolitika ifjúságpolitika
1223 Mama mama
1224 Forgalmista forgalmista
1225 Majoreta majoreta
1226 estetista estetista
1227 Operator Chimist operatorchimist
1228 Tolmács, fordító tolmács,fordító
1229 Épitkezés Épitkezés
1230 Administrație administrație
1231 áruátvevő áruátvevő
1232 Şofer Şofer
1233 padurar padurar
1234 kisegítő lelkész kisegítőlelkész
1235 cond.auto de mare tonaj cond.autodemaretonaj
1236 Constable constable
1237 Server server
1238 FELKÉSZITÜNK B KATEGÓRIÁS JOGOSITVÁNY MEGSZERZÉSÉHEZ felkÉszitÜnkbkategÓriÁsjogositvÁnymegszerzÉsÉhez
1239 Bike Messenger bikemessenger
1240 KELNERIN kelnerin
1241 Neurochirurgie neurochirurgie
1242 Clinician clinician
1243 tájékoztatási felelős (aka PR) tájékoztatásifelelős(akapr)
1244 Detective detective
1245 Om bun la toate ! ombunlatoate!
1246 ez is az is ezisazis
1247 TUI Travel Center Brasov tuitravelcenterbrasov
1248 Trombitas trombitas
1249 Infantry infantry
1250 Lider Superior lidersuperior
1251 kjhgfd kjhgfd
1252 Halozatvezeto / Conducator de Retea halozatvezeto/conducatorderetea
1253 kosarlabda kosarlabda
1254 Agricultura agricultura
1255 koala ktf koalaktf
1256 Bisnis bag women! bisnisbagwomen!
1257 Szentgyorgyon szentgyorgyon
1258 Heggesztő heggesztő
1259 Sef de tura sefdetura
1260 Android Technical Lead androidtechnicallead
1261 zidar pietrar tencuitor zidarpietrartencuitor
1262 VP Design vpdesign
1263 Get the job done! getthejobdone!
1264 G.S.A g.s.a
1265 Security Guard securityguard
1266 Paleoscatologist paleoscatologist
1267 Hegesztö hegesztö
1268 jefe taller jefetaller
1269 Gyakornok // Trainee gyakornok//trainee
1270 Scout scout
1271 liber profesionist, tel 0751847517 liberprofesionist,tel0751847517
1272 I work very hard iworkveryhard
1273 Krankenpflegerin krankenpflegerin
1274 lucrez pe cont propiu lucrezpecontpropiu
1275 Video Jurnalist videojurnalist
1276 Kindergartenpädagogin Wien kindergartenpädagoginwien
1277 Laborant laborant
1278 maször maször
1279 ii.Stoica Bogdan-Petru ii.stoicabogdan-petru
1280 Servant servant
1281 Hiripvadasz hiripvadasz
1282 Batman - Supervisor batman-supervisor
1283 RODNA rodna
1284 Paprikagyár paprikagyár
1285 sprachmitlerin sprachmitlerin
1286 Preot -Arhimandrit preot-arhimandrit
1287 Mamica cu norma intreaga mamicacunormaintreaga
1288 R.L. r.l.
1289 a avea grijă de familia mea aaveagrijădefamiliamea
1290 International Recruiter internationalrecruiter
1291 Atacant si Portar atacantsiportar
1292 Defender defender
1293 Fürstenfeldbruck fürstenfeldbruck
1294 DIRIJOR SI INSTRUMENTIST dirijorsiinstrumentist
1295 Mummy mummy
1296 Tanulok tanulok
1297 tehnician merceolog tehnicianmerceolog
1298 normatoare normatoare
1299 scolarita scolarita
1300 lider lider
1301 BIEBESHEIM biebesheim
1302 Oriflame oriflame
1303 Biker biker
1304 Rendező rendező
1305 Head of Unit headofunit
1306 Krankenpfleger krankenpfleger
1307 Seful sefilor sefulsefilor
1308 MUNKAVEZETŐ munkavezetŐ
1309 Business Partner businesspartner
1310 Cuisinier cuisinier
1311 Frec mangalul cu schimb de mana frecmangalulcuschimbdemana
1312 Wissenschaftlicher Mitarbeiter wissenschaftlichermitarbeiter
1313 Pultos-felszólgáló pultos-felszólgáló
1314 Promoter promoter
1315 Cocinero cocinero
1316 Cabin Crew cabincrew
1317 ASIST.MED.PR. asist.med.pr.
1318 Freelance Translator freelancetranslator
1319 Ugynok ugynok
1320 Médical asistent médicalasistent
1321 Fényező fényező
1322 Blogger blogger
1323 Drawer drawer
1324 Nem dolgozom! nemdolgozom!
1325 Porter porter
1326 Traktoros traktoros
1327 Reprezentantă reprezentantă
1328 SZAMITOGEPET JAVITOK INTERNETEN IS szamitogepetjavitokinternetenis
1329 Sergeant Major of the Army sergeantmajorofthearmy
1330 Lakatosmester lakatosmester
1331 Ward Sister wardsister
1332 forgalmazo forgalmazo
1333 Camera Operator cameraoperator
1334 Titolare titolare
1335 Inclinat inclinat
1336 vitrinerazzz vitrinerazzz
1337 sc umbra sa scumbrasa
1338 Auxiliar auxiliar
1339 Fundas Stanga fundasstanga
1340 Loan Officer loanofficer
1341 alkalmazot alkalmazot
1342 középályás középályás
1343 ENCARGADA encargada
1344 Pilóta pilóta
1345 Fuggetlen vallalkozo fuggetlenvallalkozo
1346 Melós melós
1347 Mamica mamica
1348 alestitor alestitor
1349 Minister minister
1350 Executioner executioner
1351 Motherfucking Renaissance Man motherfuckingrenaissanceman
1352 functionar public functionarpublic
1353 Képviselőjelölt képviselőjelölt
1354 Frate frate
1355 Systemansvarig systemansvarig
1356 Ardelean ardelean
1357 Universum universum
1358 Laminator laminator
1359 Hausekeeping hausekeeping
1360 d d
1361 Detective detective
1362 Fochist sef fochistsef
1363 Mediator-Jurist mediator-jurist
1364 gyakornok gyakornok
1365 First Violin Section firstviolinsection
1366 Székely Világutazó székelyvilágutazó
1367 "kereskedelem,tanügy..." "kereskedelem,tanügy..."
1368 Privat privat
1369 G Onok gonok
1370 Tehnician tehnician
1371 Produktionshelfer/in produktionshelfer/in
1372 szaxofonos szaxofonos
1373 prim.distrib prim.distrib
1374 Flight Attendant flightattendant
1375 Confidential confidential
1376 Membru in Consiliul de Administratie membruinconsiliuldeadministratie
1377 Területi képviselő területiképviselő
1378 Freelancer freelancer
1379 Stand Up Comedian standupcomedian
1380 Mayor mayor
1381 Projektleiter projektleiter
1382 Irányito/conducator de joc irányito/conducatordejoc
1383 Laboratory Technician laboratorytechnician
1384 tehnicean sunet tehniceansunet
1385 Test Pilot testpilot
1386 Freelance Musician freelancemusician
1387 csoportfelelos csoportfelelos
1388 Splinker monteour splinkermonteour
1389 Captain captain
1390 Jucător jucător
1391 gerustbau gerustbau
1392 Greenhouse Worker greenhouseworker
1393 Swimmer swimmer
1394 B-DUL 1 DEC 1989 NR 11 b-dul1dec1989nr11
1395 Citizen observer citizenobserver
1396 Production Operator productionoperator
1397 trovaree lavoro trovareelavoro
1398 okleveles közgazdász oklevelesközgazdász
1399 pasticeria siciliana pasticeriasiciliana
1400 Inhaberin inhaberin
1401 Tour Promoter tourpromoter
1402 Instrumentalist si vocalist instrumentalistsivocalist
1403 FELTÖLTŐ feltÖltŐ
1404 mecanic mecanic
1405 Hamba Allah SWT hambaallahswt
1406 Nyugdijba vonultam 2014 szept.tol nyugdijbavonultam2014szept.tol
1407 Italia italia
1408 Financial Controller Assistant financialcontrollerassistant
1409 PROF. GEOGRAFIE prof.geografie
1410 Ofiter Cont ofitercont
1411 Administrador administrador
1412 ................. .................
1413 Unnamed page 647405091972767 unnamedpage647405091972767
1414 coregraf coregraf
1415 Vårdbiträde/undersköterska vårdbiträde/undersköterska
1416 Keyboards keyboards
1417 baile banffy toplita centrul wellnes bailebanffytoplitacentrulwellnes
1418 Gyógymasszőr gyógymasszőr
1419 Gunsmith gunsmith
1420 Reghin reghin
1421 mezőgazdaság mezőgazdaság
1422 Liber profeonist liberprofeonist
1423 Szüretelő szüretelő
1424 semi kulonos semikulonos
1425 Mediator mediator
1426 taxi draiver taxidraiver
1427 .... ....
1428 "Mitarbeiter" "mitarbeiter"
1429 Reinigungskraft reinigungskraft
1430 Hegyimentő hegyimentő
1431 Lect universitar lectuniversitar
1432 Future Monk futuremonk
1433 Vendéglátás vendéglátás
1434 Expert Teatru Forum expertteatruforum
1435 Full Time Mum fulltimemum
1436 Keyboard/Vocal keyboard/vocal
1437 Collaborateur scientifique collaborateurscientifique
1438 Front Office frontoffice
1439 koordinátor koordinátor
1440 Bejarono bejarono
1441 EMPLEADOR DE HOGAR empleadordehogar
1442 Villanymotor Tekercselő villanymotortekercselő
1443 Finiszazs finiszazs
1444 Legal Intern legalintern
1445 sokminden sokminden
1446 Mobile GSM Technician mobilegsmtechnician
1447 Tester tester
1448 apolono apolono
1449 Insolvency Practitioner insolvencypractitioner
1450 Proxy proxy
1451 Pilota pilota
1452 hululu hululu
1453 Caporal caporal
1454 Mestersegéd mestersegéd
1455 hagyma szedö hagymaszedö
1456 ACTRITA actrita
1457 Fuvarozó fuvarozó
1458 Electricean electricean
1459 operator calculator operatorcalculator
1460 AZ az
1461 Customer Care customercare
1462 CUPTORAR cuptorar
1463 FUTAR futar
1464 Ambulantier ambulantier
1465 Software QA softwareqa
1466 A Operator aoperator
1467 Állandó karmester Állandókarmester
1468 Purtator de cuvant purtatordecuvant
1469 Kertész kertész
1470 International Business Builder internationalbusinessbuilder
1471 Painter painter
1472 Events Wizard eventswizard
1473 Koptatom az iskola padot koptatomaziskolapadot
1474 Alunna alunna
1475 TV Host tvhost
1476 Patiser patiser
1477 titkarno titkarno
1478 lakatos lakatos
1479 csomaolo csomaolo
1480 Boat Cleaner boatcleaner
1481 Buyer buyer
1482 operator ansanblare operatoransanblare
1483 facendo di tutto potatura -piantare -cogliere frutta è venderla fare l'Oglio di tutto facendodituttopotatura-piantare-coglierefruttaèvenderlafarel'oglioditutto
1484 Conducting conducting
1485 Senior Member seniormember
1486 Entartainer entartainer
1487 Fixer fixer
1488 Externe en médecine externeenmédecine
1489 învățătoare învățătoare
1490 Gepmester gepmester
1491 Pilot - Senior First Officer pilot-seniorfirstofficer
1492 Legion Etrangere legionetrangere
1493 NyOmOzÓ nyomozÓ
1494 Tåncos tåncos
1495 Personal Assistant personalassistant
1496 Operator Chimist operatorchimist
1497 Fundraiser fundraiser
1498 szórakoztatás szórakoztatás
1499 Social Assistant socialassistant
1500 Partner partner
1501 Telecommunications telecommunications
1502 zm zm
1503 DTH dth
1504 Str Observatorului nr 82-86 langa hotel Olimp strobservatoruluinr82-86langahotelolimp
1505 Senior Partner seniorpartner
1506 Product Loader productloader
1507 tanitvány tanitvány
1508 Gazdaszony gazdaszony
1509 Orchestrator,Compozitor orchestrator,compozitor
1510 O pata de culoare,asemenea unui curcubeu :) opatadeculoare,asemeneaunuicurcubeu:)
1511 Italos részleg italosrészleg
1512 Sucursala Cluj-Napoca sucursalacluj-napoca
1513 capitan capitan
1514 Baker baker
1515 Asistent Vanzari asistentvanzari
1516 timplar timplar
1517 Show Groom showgroom
1518 Electromechanical electromechanical
1519 Computer Repair computerrepair
1520 femeie de serviciu femeiedeserviciu
1521 Politist Local politistlocal
1522 Cutter/QC cutter/qc
1523 Multifunctional Staff Member multifunctionalstaffmember
1524 ....... .......
1525 juniyear juniyear
1526 3 fronts and Prospective EC 3frontsandprospectiveec
1527 Énekesnő Énekesnő
1528 Statistician statistician
1529 Staff staff
1530 tanulo tanulo
1531 Business Representative businessrepresentative
1532 Sef de trib sefdetrib
1533 foldbirtokos foldbirtokos
1534 Háziaszony háziaszony
1535 gestionar gestionar
1536 8 ora 8ora
1537 SEF MAGAZIN sefmagazin
1538 munkanélküli munkanélküli
1539 Antrenor de jmekeri antrenordejmekeri
1540 Assistente assistente
1541 Terep Teknikus terepteknikus
1542 Assembly Line assemblyline
1543 baby sitter babysitter
1544 Senior Surveyor seniorsurveyor
1545 1000 mester 1000mester
1546 trombitás trombitás
1547 Mall Cop mallcop
1548 Díjakért Felelős Ügynök TEGA RT díjakértfelelősÜgynöktegart
1549 Choreographer choreographer
1550 f f
1551 Sef Lucrari gastroenterologie seflucrarigastroenterologie
1552 dueño Lol dueñolol
1553 VPAM vpam
1554 og/dt og/dt
1555 gyógyszerész gyógyszerész
1556 munkás munkás
1557 Intructor intructor
1558 Livrator macare livratormacare
1559 Spontaneous Strategist spontaneousstrategist
1560 Upholsterer. upholsterer.
1561 Camping camping
1562 Kauffrau für Versicherungen und Finanzen kauffraufürversicherungenundfinanzen
1563 manikür,pedikur,koromepites manikür,pedikur,koromepites
1564 OSSA ossa
1565 FIBRA OPTICA fibraoptica
1566 Crocodile crocodile
1567 necalificat necalificat
1568 gyeplöszárbekötő gyeplöszárbekötő
1569 Balerina balerina
1570 Mengment mengment
1571 Dragoon dragoon
1572 Legal Counsel legalcounsel
1573 Monter- instalator monter-instalator
1574 Mall Cop mallcop
1575 gyakornok gyakornok
1576 General Troublemaker generaltroublemaker
1577 Lucrez Acasa la Mama si Tata lucrezacasalamamasitata
1578 Mezogazdasag mezogazdasag
1579 aide a la perssonne aidealaperssonne
1580 Egyetemista egyetemista
1581 segédlelkész segédlelkész
1582 Casnică casnică
1583 Casnicá casnicá
1584 Supervisor supervisor
1585 Functionar Administrativ (Jurist) functionaradministrativ(jurist)
1586 konyvelo konyvelo
1587 sef de echipa sefdeechipa
1588 maseuza maseuza
1589 Şofer Şofer
1590 Sef Statie sefstatie
1591 Járványtani ismeretek , Fertőző betegségek elmélet járványtaniismeretek,fertőzőbetegségekelmélet
1592 Venue Assistant venueassistant
1593 Tehnical Advisor tehnicaladvisor
1594 Special Extra specialextra
1595 Tűzoltó Sofőr tűzoltósofőr
1596 Lector universitar lectoruniversitar
1597 Telefonos operátor telefonosoperátor
1598 Tulajdono tulajdono
1599 Udvarhely Táncműhely udvarhelytáncműhely
1600 Gestionar Vinzator gestionarvinzator
1601 Erzieherin erzieherin
1602 Szív törő szívtörő
1603 Förskollärare förskollärare
1604 kulfold,es kozben itthon kulfold,eskozbenitthon
1605 Dragoste mea dragostemea
1606 -laborant -laborant
1607 Machine Operator machineoperator
1608 Volunteer volunteer
1609 Marosvásárhelyen 97.1, Csíkszeredában 88.1 marosvásárhelyen97.1,csíkszeredában88.1
1610 lelkipásztor lelkipásztor
1611 New fashion newfashion
1612 hegeszto hegeszto
1613 koptatom a padot koptatomapadot
1614 Senden senden
1615 Geoscientist geoscientist
1616 reprezentant reprezentant
1617 Tehnician tehnician
1618 Szabadság print&on-line - www.szabadsag.ro szabadságprint&on-line-www.szabadsag.ro
1619 casalinga casalinga
1620 BUCĂTAR. bucĂtar.
1621 Purtător de cuvânt purtătordecuvânt
1622 Șef! Șef!
1623 sonorizari Sighisoara sonorizarisighisoara
1624 ...... ......
1625 Maintenance maintenance
1626 Takarító takarító
1627 diak diak
1628 ez meg az ezmegaz
1629 sehol sehol
1630 városgazdálkodás városgazdálkodás
1631 I. ker.Építésügyi és Örökségvédelmi Hivatal i.ker.ÉpítésügyiésÖrökségvédelmihivatal
1632 Fotografo - Grafico fotografo-grafico
1633 Communications Officer communicationsofficer
1634 CEO ceo
1635 Tűzelő tűzelő
1636 Military military
1637 VP Cultural Projects vpculturalprojects
1638 verdamt rentner verdamtrentner
1639 Szezon munka szezonmunka
1640 Salahor salahor
1641 Læge læge
1642 Cleaner cleaner
1643 Apprentice apprentice
1644 Computer Operator computeroperator
1645 Herkenytyű burger sütés herkenytyűburgersütés
1646 cameriere sala camerieresala
1647 solist vocal solistvocal
1648 T.A. t.a.
1649 Affiliate partner affiliatepartner
1650 Senator senator
1651 Research Assistant researchassistant
1652 Asistente Clínica Obstétrica asistenteclínicaobstétrica
1653 Adevarurile vietii adevarurilevietii
1654 Fotograf fotograf
1655 Housekeeping housekeeping
1656 Zimmermädchen zimmermädchen
1657 Koptatom a sulipadoot :) koptatomasulipadoot:)
1658 pittyes 1es pittyes1es
1659 lucrator gestinar lucratorgestinar
1660 Biztonsági őr biztonságiőr
1661 picerno picerno
1662 Fafaragó fafaragó
1663 Reflexoterapeut -Maseur reflexoterapeut-maseur
1664 Ültető, kapáló, metsző, fűnyíró... Ültető,kapáló,metsző,fűnyíró...
1665 shoes!! shoes!!
1666 Cursant cursant
1667 Brand Ambasador brandambasador
1668 As. Igienă as.igienă
1669 Elektroniker für Betriebstechnik elektronikerfürbetriebstechnik
1670 anglia anglia
1671 ASD asd
1672 szervező szervező
1673 cadru didactic cadrudidactic
1674 elnok elnok
1675 paducasz paducasz
1676 ogu ogu
1677 extrema stanga extremastanga
1678 Clarinetist clarinetist
1679 Boxoló boxoló
1680 szollos szollos
1681 LA MAMA ACASA lamamaacasa
1682 Intern intern
1683 Owern's owern's
1684 Representative, Vending representative,vending
1685 Staff staff
1686 Aprovizionare-Beszerzés aprovizionare-beszerzés
1687 Room Attendant roomattendant
1688 qoperátor qoperátor
1689 Roman Italy romanitaly
1690 Secret secret
1691 conducator auto conducatorauto
1692 QA Tester qatester
1693 Member of Parliament memberofparliament
1694 Tulelo tulelo
1695 sclav sclav
1696 Voluntario voluntario
1697 Biztonsági őr biztonságiőr
1698 Grading packhouse gradingpackhouse
1699 2013 2013
1700 senki senki
1701 vezetö vezetö
1702 antrenor portari antrenorportari
1703 sótörő sótörő
1704 építő ipar építőipar
1705 schimbator scrumiere schimbatorscrumiere
1706 KIDOBO A POKOL KLUBJABAN kidoboapokolklubjaban
1707 Priest priest
1708 Gamer gamer
1709 Production Technician productiontechnician
1710 Joiner joiner
1711 PURT.DE CUVANT AL FUNDATIEI CRESTINE SELA purt.decuvantalfundatieicrestinesela
1712 Elektrotechniker elektrotechniker
1713 masszázs masszázs
1714 Actress actress
1715 tengsz lengsz tengszlengsz
1716 Kultúráért felelős VT-tag kultúráértfelelősvt-tag
1717 Captain (O-3) captain(o-3)
1718 :) :)
1719 ovono ovono
1720 ȘEF SERVICIU RELAȚII PUBLICE ȘefserviciurelaȚiipublice
1721 ingelheim am rhein ingelheimamrhein
1722 operator de productie operatordeproductie
1723 fordító fordító
1724 Schifferstadt schifferstadt
1725 Dolgozo dolgozo
1726 Șofer Șofer
1727 lovaszat lovaszat
1728 Degustator degustator
1729 8 orat 8orat
1730 Administrative Clerk administrativeclerk
1731 Creative Partner creativepartner
1732 bérszámfejtő bérszámfejtő
1733 Intro relatie patul meu viata de noapte introrelatiepatulmeuviatadenoapte
1734 Tejtermekgyarto tejtermekgyarto
1735 camarela camarela
1736 vonatkerekpumpalo vonatkerekpumpalo
1737 Will work willwork
1738 "Vadimar" "vadimar"
1739 műszaki rajzoló műszakirajzoló
1740 Actionar majoritar actionarmajoritar
1741 şofer şofer
1742 Vocalista vocalista
1743 Reprezentant comecial reprezentantcomecial
1744 Customer Service Executive customerserviceexecutive
1745 Gépész operátor gépészoperátor
1746 Financial Advisor financialadvisor
1747 zidar, pietrat, tencuitor zidar,pietrat,tencuitor
1748 CNC machine tools operator cncmachinetoolsoperator
1749 baros baros
1750 Box club arena boxclubarena
1751 Welder welder
1752 Trabajador trabajador
1753 Animator animator
1754 Cleaner cleaner
1755 csicskás csicskás
1756 h h
1757 Games Attendant gamesattendant
1758 előadó előadó
1759 badigart badigart
1760 gép jármü vezetö gépjármüvezetö
1761 Mozgásterapeuta mozgásterapeuta
1762 Electro mecanic electromecanic
1763 SUPORTER FANATIK suporterfanatik
1764 Patron al propriului destin patronalpropriuluidestin
1765 Youth Policy youthpolicy
1766 behajtó behajtó
1767 Spartan Warrior spartanwarrior
1768 Sef la fabrica de super glue seflafabricadesuperglue
1769 Szovata Varos Onkormanyzata szovatavarosonkormanyzata
1770 Network Technician networktechnician
1771 Disc Jockey discjockey
1772 Legal Department legaldepartment
1773 PR pr
1774 automatist automatist
1775 Technician technician
1776 Dog/Cat Groomer , cosmetician canin dog/catgroomer,cosmeticiancanin
1777 Értékesítő Értékesítő
1778 segítő segítő
1779 FANS fans
1780 Neurology neurology
1781 Representative representative
1782 Technician technician
1783 Librarian librarian
1784 Gestionar depozit gestionardepozit
1785 Fundas Central fundascentral
1786 Mijlocas central mijlocascentral
1787 Ügyíntéző Ügyíntéző
1788 mamica si sotie mamicasisotie
1789 Dolgozok dolgozok
1790 Pianist/Accompanist pianist/accompanist
1791 magazioner,stivuitorist,manipulant magazioner,stivuitorist,manipulant
1792 Folyamatellenőr folyamatellenőr
1793 Subscriitor Corporate subscriitorcorporate
1794 eladasi ugynok eladasiugynok
1795 Sef ocol silvic sefocolsilvic
1796 fierar betonist fierarbetonist
1797 Neptancos neptancos
1798 TIMISOAREI NR 22 timisoareinr22
1799 Alexander Trans Company alexandertranscompany
1800 D-Man d-man
1801 Notar Stagiar notarstagiar
1802 Divattervezo divattervezo
1803 Culinary Profesional culinaryprofesional
1804 Bauingenieur bauingenieur
1805 Sefa la mine acasa sefalamineacasa
1806 cataract & refractive surgery cataract&refractivesurgery
1807 JURNALIST jurnalist
1808 Vicepreședinte Relații Externe vicepreședinterelațiiexterne
1809 Ghid turistic ghidturistic
1810 Jobb átlövő jobbátlövő
1811 Emergency Worker emergencyworker
1812 Viceprimar viceprimar
1813 Reprezentant IT-operator reprezentantit-operator
1814 Informatikus informatikus
1815 igen igen
1816 takarítónő takarítónő
1817 vezér vezér
1818 Center center
1819 plicty plicty
1820 Topographic survey topographicsurvey
1821 Fundaș Central fundașcentral
1822 Everywhere Anytime everywhereanytime
1823 Metal Organ Pipe Maker metalorganpipemaker
1824 functionar administrativ functionaradministrativ
1825 angajat angajat
1826 előkészítő előkészítő
1827 non stop nonstop
1828 Junior Communication Officer in Global Communication juniorcommunicationofficeringlobalcommunication
1829 Kampány Koordinátor kampánykoordinátor
1830 Énekes Énekes
1831 KEZDŐ kezdŐ
1832 ~ ~
1833 A.g securitate a.gsecuritate
1834 On Trade Supervisor ontradesupervisor
1835 Miner miner
1836 Warehouse Operative warehouseoperative
1837 FOTOGRAF PROFISIONIST fotografprofisionist
1838 End of Lease Admin endofleaseadmin
1839 kertészkedő kertészkedő
1840 Wharehouse Operator wharehouseoperator
1841 Legal Assistant legalassistant
1842 Csinod KFT csinodkft
1843 smartworker.ro smartworker.ro
1844 GOOLKEEPER goolkeeper
1845 hazi munka hazimunka
1846 avenza avenza
1847 Music Production musicproduction
1848 ag interventie aginterventie
1849 Human Resources humanresources
1850 TEHNICIAN NUTRITIONIST tehniciannutritionist
1851 Cantor (Christianity) cantor(christianity)
1852 pine technician pinetechnician
1853 Gamer gamer
1854 Koch (Küche) koch(küche)
1855 menager menager
1856 katonatiszt katonatiszt
1857 Voluntari voluntari
1858 p'acolo ni :-) p'acoloni:-)
1859 képviselő képviselő
1860 Putzfrau putzfrau
1861 Lector lector
1862 PSR psr
1863 Napoca 2-4 napoca2-4
1864 Tehnolog tehnolog
1865 Diszpecser diszpecser
1866 Aikidoka aikidoka
1867 zidar zidar
1868 Multifunctional multifunctional
1869 LPN lpn
1870 Excavation Assistant excavationassistant
1871 Vehicle Technician vehicletechnician
1872 Sound Guy soundguy
1873 šéf šéf
1874 lazitani lazitani
1875 pultos pultos
1876 SOFÖR sofÖr
1877 Sofőr sofőr
1878 Dios dios
1879 Trader trader
1880 Ovónő ovónő
1881 Garden Supervisor gardensupervisor
1882 House Mother housemother
1883 Peon,pero aciendo de todo peon,peroaciendodetodo
1884 Fan fan
1885 Schülerin schülerin
1886 Research research
1887 Kantor kantor
1888 Tenor tenor
1889 Erdész erdész
1890 reszlegfelelos reszlegfelelos
1891 Officer officer
1892 Team Assistant teamassistant
1893 Animator, expert tehnic, sofer, takarító, infós, satöbbi animator,experttehnic,sofer,takarító,infós,satöbbi
1894 primary accounting primaryaccounting
1895 Composer / Performer (vocalist) composer/performer(vocalist)
1896 Light Equipment Operator lightequipmentoperator
1897 KAZÁNGÉPÉPSZ kazÁngÉpÉpsz
1898 AWW Zerspanungstechnik awwzerspanungstechnik
1899 feather sexing feathersexing
1900 Process Asisstant processasisstant
1901 tata hotilor tatahotilor
1902 Penzkereso penzkereso
1903 Prometeo Fellow Senescyt Ecuador prometeofellowsenescytecuador
1904 World Team worldteam
1905 Tenyeszto tenyeszto
1906 Krewella Remixer krewellaremixer
1907 Sef de secţie - Conductori sefdesecţie-conductori
1908 Musician musician
1909 Responsabil cu timpul liber responsabilcutimpulliber
1910 Inginear inginear
1911 Divortat divortat
1912 Cosmeticiana cosmeticiana
1913 smeceria smeceria
1914 Sorvezeto- javito sorvezeto-javito
1915 TANÍTÓNŐ tanÍtÓnŐ
1916 cikkíró cikkíró
1917 ambulancier ambulancier
1918 Otthoni idős gondozó otthoniidősgondozó
1919 Óvonő Óvonő
1920 Sef Raion Mopro sefraionmopro
1921 kutató kutató
1922 Vigyazat vigyazat
1923 kommisioner kommisioner
1924 Teszter teszter
1925 POLGARMESTER polgarmester
1926 :-* :-*
1927 Contract Manger contractmanger
1928 Mayor mayor
1929 IT Admin itadmin
1930 R&D r&d
1931 Casher casher
1932 Wiessmann Transylvania wiessmanntransylvania
1933 Extrema stanga/dreapta extremastanga/dreapta
1934 árufeltöltő / kasszás árufeltöltő/kasszás
1935 Jurist jurist
1936 Dispecer dispecer
1937 Cashier cashier
1938 DD Tank ddtank
1939 cseléd cseléd
1940 Fazy Lem mob.srl fazylemmob.srl
1941 Cashier cashier
1942 MAESTRU .al ...DEGHIZARILOR maestru.al...deghizarilor
1943 Meto-s meto-s
1944 Steinbruch steinbruch
1945 PMO pmo
1946 Personal Banker personalbanker
1947 Vocalist vocalist
1948 Picker picker
1949 Colonel colonel
1950 nevel[n[ voltam nevel[n[voltam
1951 SPITALUL ORASENESC BARAOLT spitalulorasenescbaraolt
1952 Operating Room operatingroom
1953 logopédus logopédus
1954 Cegvezeto cegvezeto
1955 beosztott és fõnök egy személyben beosztottésfõnökegyszemélyben
1956 Tetőfedő tetőfedő
1957 weitris weitris
1958 Enginier enginier
1959 draien draien
1960 Tehnician maseur/cosmeticiana tehnicianmaseur/cosmeticiana
1961 Legal Advisor legaladvisor
1962 Fighter Pilot fighterpilot
1963 Bookbinder bookbinder
1964 sa stau lenevind tot timpul la pc si sa am orce vreau instalat sastaulenevindtottimpullapcsisaamorcevreauinstalat
1965 Goods Receiver goodsreceiver
1966 --- ---
1967 Asistent social asistentsocial
1968 Human Rights Monitor humanrightsmonitor
1969 Libero professionista liberoprofessionista
1970 Sergeant sergeant
1971 Selbstständig selbstständig
1972 EU Funds Expert eufundsexpert
1973 képviselő képviselő
1974 női kvóta nőikvóta